Sets the height of the specified row in twips.
void SetRowHeight( long Row, int nHeight )
Example codes can be pasted to doExample() function in GridControl's examples to run
int nRow1, nRow2; m_GridCtrl.GetRowRange(nRow1, nRow2); for(int ii = nRow1; ii <= nRow2; ii++) { int height = m_GridCtrl.GetRowHeight(ii); m_GridCtrl.SetRowHeight(ii, height * 1.5); }
GridControl::GetRowHeight
GridControl.h