ClassFont
Defines a particular format for text, including font face, size, and style attributes.
Definition
Namespace:Telerik.Reporting.Drawing
Assembly:Telerik.Reporting.dll
Syntax:
[TypeConverter(typeof(FontConverter))]
public class Font
Inheritance: objectFont
Properties
Bold
Gets a value that indicates whether this Font is bold.
Declaration
public bool Bold { get; set; }
Property Value
bool
true if this Font is bold; otherwise, false.
Italic
Gets a value that indicates whether this Font is italic.
Declaration
public bool Italic { get; set; }
Property Value
bool
true if this Font is italic; otherwise, false.
Name
Gets or sets the face name of this Font.
Declaration
[TypeConverter("System.Drawing.FontConverter+FontNameConverter, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public string Name { get; set; }
Property Value
string
A string representation of the face name of this Font.
Strikeout
Gets a value that indicates whether this Font specifies a horizontal line through the font.
Declaration
public bool Strikeout { get; set; }
Property Value
bool
true if this Font has a horizontal line through it; otherwise, false.
Methods
ToString()
This member overrides ToString()
Declaration
public override string ToString()
Returns
string
A string value describing the Font.
Overrides