Category / Section
How to set the default row height in the WinForms GridGroupingControl?
Setting default row height
To set the default heights in the WinForms GridGroupingControl record
rows, you can use the DefaultRecordRowHeight property.
C#
//Sets the default height of the record rows to the GridGroupingControl
this.gridGroupingControl1.Table.DefaultRecordRowHeight = 40;VB
'Sets the default height of the record rows to the GridGroupingControl
Me.gridGroupingControl1.Table.DefaultRecordRowHeight = 40 Note:
The gridGroupingControl1.TableControl.The DefaultRowHeight property does not affect the height of the record rows in the GridGroupingControl.
Samples:
Reference Link: Setting the Column Widths and Row Heights