I was trying to set the grid title text with bold font style with the following statements. However, it turned out that the bold effect not only applied to the title but also to the row header and cell text. Is there a way to apply the bold font style to the grid title only? Thanks.
this.reportUltraGrid.Font = new Font(Font, FontStyle.Bold);
this.reportUltraGrid.Text = "* Not all documents may be displayed";
ty very much... work for me 2 :)
Thanks, it works.
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { UltraGridLayout layout = e.Layout; UltraGridOverride ov = layout.Override; layout.CaptionAppearance.FontData.Bold = DefaultableBoolean.True; }