AD
Administrator
Syncfusion Team
August 17, 2005 08:02 AM UTC
To support individual row heights in a GridGroupingControl, you must use a custom engine object.
Take a look at this sample. It support allowing youruser to change the row heights with the mouse.
\Syncfusion\Essential Studio\3.3.0.0\Windows\Grid.Windows\Samples\Grouping\ResizableRows
To programatically change a row height, you would use code like:
int recordIndex = 4; //index of record to change
((IGridRowHeight)this.gridGroupingControl1.Table.Records[recordIndex].RecordRows[0]).RowHeight = 40;
DM
Dmitry
August 19, 2005 08:33 AM UTC
Wow, yours Studio is extremal flexible!
It''s work. Thank you very much.