Sets the state of the cell's check box.
bool SetCheck( int nRow, int nCol, bool bCheck )
false if row/column index is invalid, otherwise true
Example codes can be pasted to doExample() function in GridControl's examples to run
int nRow = m_GridCtrl.GetRowOffset(); int nCol = m_GridCtrl.GetColOffset(); m_GridCtrl.SetCheck(nRow, nCol, true); m_GridCtrl.SetRedraw(flexRDBuffered); bool bRet = m_GridCtrl.GetCheck(nRow, nCol);
GridControl::GetCheck
GridControl.h