LandscapeFontNames Property

Applies To

Application object, Global object.

Description

Returns a FontNames object that includes the names of all the available landscape fonts. Read-only.

See Also

FontNames property.

Example

This example displays the landscape font names in the FontNames object at the end of the active document.

For Each aFont In LandscapeFontNames
    response = MsgBox(Prompt:=aFont, Buttons:=vbOKCancel)
    If response = vbCancel Then Exit For
Next aFont