[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IThemeFontScheme.Major

Major Property

Major

Gets the major font collection used by the theme.

Gets the collection of major theme fonts for different language categories. Major theme fonts are used by the workbook theme for content that follows the theme's major font settings.

Declaration
IThemeFonts Major { get; }
ReadOnly Property Major As IThemeFonts
Examples
ITheme theme = new Theme("Custom Theme", Themes.Berlin);
theme.ThemeFontScheme.Major[FontLanguageIndex.Latin].Name = "Buxton Sketch";
workbook.Theme = theme;

IThemeFonts majorFonts = workbook.Theme.ThemeFontScheme.Major;
IThemeFont latinFont = majorFonts[FontLanguageIndex.Latin];