Given a result set with m rows and n columns, the cell at row 0, column 0 represents the cell at the top-left corner, while the cell at row m - 1, column n - 1 is the cell at the bottom-right corner.
Public Member Functions | |
HRESULT | Cell ([in] Int32 RowIndex,[in] Int32 ColIndex,[out, retval]VARIANT *pCell) |
Return a cell specified by iRow and iColumn. | |
HRESULT | CellFlag ([in] Int32 RowIndex,[in] Int32 ColIndex,[out, retval]DSSData_Flags *pCellFlag) |
Return status information for each cell. | |
HRESULT | Column ([in] Int32 ColIndex,[out, retval] VARIANT *ppDataSet) |
Return an entire column. | |
HRESULT | Data ([out, retval] VARIANT *ppDataSet) |
Return the entire result set as a two dimensional array. | |
HRESULT | NumColumns ([out, retval] Int32 *pNumCols) |
Return the number of columns Return the number of columns. | |
HRESULT | NumRows ([out, retval] Int32 *pNumRows) |
Return the number of rows Return the number of rows. | |
HRESULT | Row ([in] Int32 RowIndex,[out, retval] VARIANT *ppDataSet) |
Return an entire row. |
|
Return a cell specified by iRow and iColumn. NULL cell is indicated by VT_EMPTY.
|
|
Return status information for each cell. Each bit, if set, indicate the invalid cell, floating point error during evaluation or other error conditions. However, for other methods on this interface, Cell, Row, Column, Data, when encounter cell with error flag, regardless of types of error, it will set the Variant into VT_EMPTY. For detailed information, this call is provided.
|
|
Return an entire column.
|
|
Return the entire result set as a two dimensional array.
|
|
Return the number of columns Return the number of columns.
|
|
Return the number of rows Return the number of rows.
|
|
Return an entire row.
|