Individual row height in GridGroupingControl

Hi. It''s possible set one row height in GridGroupingControl? I try this: gridGroupingControl1.TableModel.Rows.Size.SetSize( rowIndex, rowHeight ); But it setting height for all rows same type as row with rowIndex index. Thanks.

2 Replies

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.

Loader.
Up arrow icon