[]
Represents a font that is to be used for a specific language or locale.
public class ThemeFont
Gets or sets the character set supported by this font.
public FontCharSet CharSet { get; set; }
Gets or sets a numeric value that corresponds to CharSet.
public byte CharSetCode { get; set; }
Gets the document that contains this font.
public DocumentBase Document { get; }
Gets or sets the font family of this font.
public FontFamily Family { get; set; }
Gets a value indicating whether the containing document is in reading mode.
public bool IsReadOnly { get; }
Gets or sets the primary name of the font.
public string Name { get; set; }
Gets or sets the 10-byte series of numbers that is used to describe the visual characteristics of a typeface.
Panose is a compact 10-byte description of a font's critical visual characteristics, such as contrast, weight, and serif style. The digits represent Family Kind, Serif Style, Weight, Proportion, Contrast, Stroke Variation, Arm Style, Letterform, Midline, and X-Height.
public IList<byte> Panose { get; set; }
Gets or sets the font pitch of this font.
The pitch indicates whether the font is fixed pitch, proportionally spaced, or relies on a default setting.
public FontPitch Pitch { get; set; }