ThemeFonts.Item method (Office)

Gets one of the three language fonts contained in the ThemeFonts collection.

Syntax

expression.Item(Index)

expression An expression that returns a ThemeFonts object.

Parameters

Name Required/Optional Data type Description
Index Required MsoFontLanguageIndex The index value of the ThemeFont object.

Return value

ThemeFont

Example

The following example sets the font for the body of a document to the Latin theme.

Dim tTheme As OfficeTheme 
Dim tfThemeFonts As ThemeFonts 
Dim latinMinorFont As ThemeFont 
Set tfThemeFonts = tTheme.ThemeFontScheme.MinorFont 
Set latinMinorFont = tfThemeFonts(msoThemeLatin)

See also

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.