[]
Represents a font scheme within a theme.
The font scheme consists of a pair of major and minor fonts to use in a document. The major font corresponds well with the heading areas of a document, while the minor font corresponds well with the normal text or paragraph areas.
public class FontScheme
Gets the containing document.
public DocumentBase Document { get; }
Gets a value indicating whether the containing document is in reading mode.
public bool IsReadOnly { get; }
Gets a set of major fonts that are to be used for different languages or locales. The major font corresponds well with the heading areas of a document.
public ThemeFontCollection MajorFont { get; }
Gets a set of minor fonts that are to be used for different languages or locales. The minor font corresponds well with the normal text or paragraph areas.
public ThemeFontCollection MinorFont { get; }
Gets or sets the scheme name.
public string Name { get; set; }
Gets a theme font name by its type.
public string GetFontName(ThemeFontType type)
type
ThemeFontTypeThe theme font type.
The theme font name.
Gets a theme font by its type.
public ThemeFont GetThemeFont(ThemeFontType type)
type
ThemeFontTypeThe theme font type.
The theme font.