Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
Set row height in Wingrid
posted

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

Parents
  • 12480
    Verified Answer
    Offline posted

    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.

Reply Children