Returns a reference to an item in an array
[C++]
double& Cell(
WORD wRow,
WORD wCol
);
const double& Cell(
WORD wRow,
WORD wCol
) const;
The row containing the item of interest (the top row is 0).
The column containing the item of interest (the leftmost column is 0).
The reference returned by this function can be used to read the item and to update it.
Header: xllplus.h