Gets a user-defined variant associated with the given row.
_VARIANT GetRowData( int nRow )
user-defined variant associated with the given row
Example codes can be pasted to doExample() function in GridControl's examples to run
int ins=100; vector<string> vstr={"data here is 100"}; m_GridCtrl.SetRowData(2,ins); m_GridCtrl.SetRowValues(2-m_GridCtrl.GetRowOffset(),vstr,0,false); out_int("Data is ",m_GridCtrl.GetRowData(2));
GridControl.h