Gets cell text.
Gets cell properties
string GetCell( int nRow, int nCol )
_VARIANT GetCell( CellPropertySettings settings, int nRow, int nCol )
empty string if row/column index is invalid, or "1", "0" if the cell has check box, or the cell's text
cell property value
Example codes can be pasted to doExample() function in GridControl's examples to run
int nRow = m_GridCtrl.GetRowOffset(); int nCol = m_GridCtrl.GetColOffset(); double left = m_GridCtrl.GetCell(flexcpLeft, nRow, nCol); double top = m_GridCtrl.GetCell(flexcpTop, nRow, nCol); double width = m_GridCtrl.GetCell(flexcpWidth, nRow, nCol); double height = m_GridCtrl.GetCell(flexcpHeight, nRow, nCol); printf( "cell(%d, %d) left=%g, top=%g, width=%g, height=%g\n", nRow, nCol, left, top, width, height);
GridControl.h