Infragistics(R) NetAdvantage(R) Windows Forms
FontData Class
Members  Example  See Also  E-mail your feedback on this topic.
Infragistics.Win Namespace : FontData Class

The FontData class is used to hold font properties (e.g. Bold, Italic, Name etc.) on appearances. It allows the overriding of individual properties. For example, if a control's base font was set to "MS San Serif" 8.5pt. An appearance could override the Bold property to true and get a bold font without having to specify the name and size since that would be picked up from the base font.

Syntax

Visual Basic (Declaration) 
Public NotInheritable Class FontData 
   Inherits Infragistics.Shared.SubObjectBase
C# 
public sealed class FontData : Infragistics.Shared.SubObjectBase 

Example

This sample sets the FontData associated properties of an Appearance object.

Visual BasicCopy Code
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
C#Copy Code
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;

}

See Also

Reference

FontData Members
Infragistics.Win Namespace
T:Infragistics.Shared.SubObjectBase
System.Runtime.Serialization.ISerializable