[]
Represents font attributes (for example, font name, font size, and color) for an object.
public interface IFontFormat
Gets or sets the boolean property that indicates whether the represented text is bold.
bool Bold { get; set; }
true
if bold; otherwise, false
.
Gets the color format .
IColorFormat Color { get; }
Gets or sets the boolean property that indicates whether the represented text is italicized.
bool Italic { get; set; }
Gets or sets the font name to use for the represented text.
string Name { get; set; }
The name.
Gets or sets the size of the font in points.
double Size { get; set; }
The size.
Gets or sets the boolean property that indicates whether the represented text has a strike through it.
bool Strikethrough { get; set; }
true
if strikethrough; otherwise, false
.
Gets or sets the boolean property that indicates whether the represented text is a subscript.
bool Subscript { get; set; }
true
if subscript; otherwise, false
.
Gets or sets the boolean property that indicates whether the represented text is a superscript.
bool Superscript { get; set; }
true
if superscript; otherwise, false
.
Gets or sets the theme font in the applied font scheme that is associated with the specified object (read/write ThemeFont).
ThemeFont ThemeFont { get; set; }
Gets or sets the UnderlineStyle of the represented text.
TextUnderlineType Underline { get; set; }