AD
Administrator
Syncfusion Team
April 5, 2004 05:14 PM UTC
The rowheaders are column 0 in a GridControl. So, you can set the width of the row headers by setting
grid.ColWidths[0] = 80;
AD
Administrator
Syncfusion Team
April 5, 2004 05:15 PM UTC
Hi Chrisben,
You can set the rowheader''s width and height using the following code:
Me.Grid1.ColWidths(0) = 20
Me.Grid1.RowHeights(1) = 200
Regards,
Jay N
CH
chris
April 6, 2004 05:48 PM UTC
Thanks for the help