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,
If you believe that that was not the proper answer to your question, you can go back and unmark that answer. This is in case that reply was marked as the answer by mistake.
Please let me know if I can further assist you.
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.
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.