Class Font
The font model.
public class Font
- Inheritance
-
Font
- Inherited Members
Properties
Color
Gets or sets the hex color.
public string Color { get; set; }
Property Value
IsBoldFont
Gets or sets a value indicating whether the font style is bold.
public bool IsBoldFont { get; set; }
Property Value
IsItalicFont
Gets or sets a value indicating whether the font style is italic.
public bool IsItalicFont { get; set; }
Property Value
IsUnderLineFont
Gets or sets a value indicating whether the font style is underline.
public bool IsUnderLineFont { get; set; }
Property Value
LineHeight
Gets or sets LineHeight.
public int LineHeight { get; set; }
Property Value
Name
Gets or sets Name.
public FontFamily? Name { get; set; }
Property Value
Size
Gets or sets Size.
public float Size { get; set; }
Property Value
Style
Gets or sets Style.
[Obsolete("Style is deprecated, please use IsBoldFont, IsItalicFont and IsUnderLineFont.")]
public FontStyle? Style { get; set; }