Krypton-OutlookGrid
Krypton-OutlookGrid copied to clipboard
How can I change height of each row in the OutlookGrid
Hi
I change the font and I need to change height of each row in the OutlookGrid
Finish to try this don't work Me.OutlookGrid1.RowTemplate.Height = 30
Regards Sigster
Hi sigster,
For an unknown reason (well maybe located in KryptonDatagridview.cs at method GetCellPreferredHeight) the row template seems not to work.
A workaround is to set the height during populating the grid :
row = new OutlookGridRow();
row.Height = 80;
row.CreateCells(....
Can you give a try ?
Thanks Cocotteseb this works