XLL+ Class Library

CXlArray::Cell

Returns a reference to an item in an array

[C++]
double& Cell(
   WORD wRow,
   WORD wCol
);
const double& Cell(
   WORD wRow,
   WORD wCol
) const;

Parameters

wRow

The row containing the item of interest (the top row is 0).

wCol

The column containing the item of interest (the leftmost column is 0).

Remarks

The reference returned by this function can be used to read the item and to update it.

Requirements

Header: xllplus.h

See Also

CXlArray Class | CXlArray Methods