Sets one column text.
bool SetColValues( int nCol, const vector<string> & vsVals, int nRow1 = 0, bool bExpand = false )
false if nCol is invalid or there's not enough row/column, otherwise true
Example codes can be pasted to doExample() function in GridControl's examples to run
vector<string> vsItems = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; m_GridCtrl.SetColValues(0,vsItems,0,true);
GridControl.h