[]
Gets the number of theme font entries in this collection.
Use this property to determine how many language-specific theme font entries are available in the current IThemeFonts collection.
int Count { get; }
ReadOnly Property Count As Integer
ITheme theme = new Theme("CustomTheme", Themes.Berlin);
workbook.Theme = theme;
IThemeFonts majorFonts = theme.ThemeFontScheme.Major;
int count = majorFonts.Count;