Need to reduce the header text font for a ultragridcolumn.
Can we acheive it through the ultragridband properties ?
Kindly suggest for options.
Hello ,
Appearance object determinants the look of the UI element on which it will be applied, it includes and Font data as part of the appearance. More about Appearance object you could find on the following link :
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/Win_Appearance_Objects.html
So if you want to adjust font of a header of a columns you could do this globally through
ultraGrid1.DisplayLayout.Override.HeaderAppearance.FontData
Or for specific band through
ultraGrid1.DisplayLayout.Bands[0].Header.Appearance.FontData
Also you could review the following link with helpful information about styling of UltraGrid:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/WinGrid_Styling_WinGrid.html
Please let me know if you have any further questions
Hey thanks for reply....
It worked fine for me..