[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IThemeFonts.Count

Count Property

Count

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.

Declaration
int Count { get; }
ReadOnly Property Count As Integer
Examples
ITheme theme = new Theme("CustomTheme", Themes.Berlin);
workbook.Theme = theme;
IThemeFonts majorFonts = theme.ThemeFontScheme.Major;
int count = majorFonts.Count;