FontNames Object

Microsoft Word Visual Basic

FontNames Object

         
Application FontNames

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

Using the FontNames Object

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)

Remarks

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