[]
Contains the font attributes (font name, font size, color, and so on) for an object.
public interface IFont
Gets or sets whether the font is bold.
bool Bold { get; set; }
Gets or sets the Color of the represented text.
Color Color { get; set; }
Gets or sets the color of the font.
int ColorIndex { get; set; }
Gets or sets whether the font style is italic.
bool Italic { get; set; }
Gets or sets the name of the object.
string Name { get; set; }
Gets or sets the size of the font.
double Size { get; set; }
Gets or sets whether the font is struck through with a horizontal line.
bool Strikethrough { get; set; }
Gets or sets whether the font is formatted as subscript (False by default).
bool Subscript { get; set; }
Gets or sets whether the font is formatted as superscript. The value is False by default.
bool Superscript { get; set; }
Gets or sets the theme color in the applied color scheme that is associated with the specified object. The ThemeColor value is read or write.
ThemeColor ThemeColor { get; set; }
Gets or sets the theme font in the applied font scheme that is associated with the specified object. The ThemeFont is read or write.
ThemeFont ThemeFont { get; set; }
Gets or sets a value that lightens or darkens a color. The valid number is from -1 (darkest) to 1 (lightest). Zero (0) is neutral.
double TintAndShade { get; set; }
Gets or sets the type of underline applied to the font.
UnderlineType Underline { get; set; }