How can set the row height in a Wingrid ? There was a property for this is the VB6 version.
My app is used by a lot of older people, so I use larger fonts and space out the rows in grids
Hello,
You can set this by using the DefaultRowHeight property on the grid's override. This code will increase the row's height and also set the font to a larger size:
ultraGrid1.DisplayLayout.Override.DefaultRowHeight = 30;ultraGrid1.DisplayLayout.Override.RowAppearance.FontData.SizeInPoints = 14;
Please let me know if you have any further questions.
That is he answer. Thanks
(Why do I keep getting the question : Mark as not Answer ?
Many thanks - that is the property I was looking for. Also interesting about the font size.