Category / Section
How to set the default row height in the WinForms GridGroupingControl?
1 min read
Setting default row height
To set the default heights in the 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.DefaultRowHeight property does not affect the height of the record rows in the GridGroupingControl.
Samples:
Reference link: https://help.syncfusion.com/windowsforms/classic/gridgroupingcontrol/managing-records-and-columns#setting-the-column-widths-and-row-heights