Version

FontData Property (Appearance)

The font override settings to be used for displaying text.
Syntax
'Declaration
 
Public Overrides ReadOnly Property FontData As FontData
public override FontData FontData {get;}
Example
This sample sets the FontData associated properties of an Appearance object.

Imports Infragistics.Win

Private Sub SetGridFont()

       Dim fd As FontData = Me.UltraGrid1.DisplayLayout.Appearance.FontData

       fd.Bold = DefaultableBoolean.True
       fd.Italic = DefaultableBoolean.True
       fd.Name = "Times New Roman"
       fd.Underline = DefaultableBoolean.True

   End Sub
using Infragistics.Win;

private void SetGridFont()
{

	FontData fd = this.ultraGrid1.DisplayLayout.Appearance.FontData;

	fd.Bold = DefaultableBoolean.True ;
	fd.Italic = DefaultableBoolean.True;
	fd.Name = "Times New Roman";
	fd.Underline = DefaultableBoolean.True;

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also