Hi.
I've made a userControl having UltraWinGrid and put this on the web page.
It works fine but the row height is different from I've set, data row height and header
row height are bigger, and can't control them.
I've set the value of DefaultRowHeight at the grid InitializeLayout event.
Do I missed something or is there any particular solution of this?
You're right. the MinRowHeight value was -1, so I ignored it. but when I put the same value as the defaultHeight, it works.
Thank you very much. Mike. Have a good day.
My guess is that the height you are setting is less than the MinimumRowHeight which is calculated based on the font size. Try setting MinimumRowHeight to some less than or equal to your DefaultRowHeight. Set MinimumRowHeight first, before DefaultRowHeight, of course.