[]
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.
IThemeFonts Major { get; }
ReadOnly Property Major As IThemeFonts
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];