Hi
I require to change the height of the Grid Header.
Note, the GRID header, not the column headers. I managed a workaround by simply setting the grid.Text using:
e.Layout.Grid.Text = Environment.NewLine + "Header Text" + Environment.NewLine + " ";
But for some odd reason that does not work when placing a grid on my main form.
The rest of my grids are contained in user controls. Any ideas why?
On the form, the grid header remains 1 line high.
Another way to literally set the height?
Oddly enough I achieved what I needed by setting
e.Layout.CaptionAppearance.TextTrimming = TextTrimming.None;
Quite odd seeing the grids in the User Control didn't need that to be set, only the one on the Form.
Thanks
Hm, I wasn't aware that this worked at all. Perhaps you need to set WrapHeaderText to true?