FontNames object (Word)

Represents a list of the names of all the available fonts.

Remarks

Use the FontNames, LandscapeFontNames, or PortraitFontNames property to return the FontNames object. The following example displays the number of portrait fonts available.

MsgBox PortraitFontNames.Count & " fonts available"

This example lists all the font names in the FontNames object at the end of the active document.

For Each aFont In FontNames 
 ActiveDocument.Range.InsertAfter aFont & vbCr 
Next aFont

Use FontNames (Index), where Index is the index number, to return the name of a font. The following example displays the first font name in the FontNames object.

MsgBox FontNames(1)

Note

You cannot add names to or remove names from the list of available font names.

See also

Word Object Model Reference

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.