There are two ways to prevent the column headers from assuming different sizes. 1) By setting the 'WrapText' of the AnyHeaderCell to false. C# this.GridGroupingControl1.Appearance.AnyHeaderCell.WrapText = false; VB Me.GridGroupingControl1.Appearance.AnyHeaderCell.WrapText = false 2) By specifying the height of the column header. C# //Specify the height of the column header. This will prevent the column headers from assuming different sizes. this.GridGroupingControl1.TableOptions.ColumnHeaderRowHeight = 60; VB ' Specify the height of the column header. This will prevent the column headers from assuming different sizes. Me.GridGroupingControl1.TableOptions.ColumnHeaderRowHeight = 60 |
This page will automatically be redirected to the sign-in page in 10 seconds.