XLL+ Class Library (6.3)

CXlArray::Cell

Returns a reference to an item in an array

double& Cell(
   size_t row,
   size_t col
);
const double& Cell(
   size_t row,
   size_t col
) const;

Parameters

row

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

col

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