Hi, I wonder if you can help us.
We are trying to change the font for the header in an ultragrid, however we don't know the appearance that we have to change for the header that is mark in a red circle on the following image.
I'm writing from Lima, Peru, that's why the image is on Spanish.
Thanks
Hello,
Thank you for your post . You can change the font of the grid column header using header appearance.
Something like this would change the font for column 0:
FontData fd = this.ultraGrid1.DisplayLayout.Bands[0].Columns[0].Header.Appearance.FontData;
fd.Bold = DefaultableBoolean.True; fd.Italic = DefaultableBoolean.True; fd.Name = "Times New Roman"; fd.Underline = DefaultableBoolean.True;
Thanks Divya, we also tried that, however I want to change the font on the grid header text, not in the column header.