Global.PortraitFontNames property (Word)

Returns a FontNames object that includes the names of all the available portrait fonts.

Syntax

expression. PortraitFontNames

expression Required. A variable that represents a 'Global' object.

Example

This example inserts a list of portrait fonts at the insertion point.

For Each aFont In PortraitFontNames 
 With Selection 
 .Collapse Direction:=wdCollapseEnd 
 .InsertAfter aFont 
 .InsertParagraphAfter 
 .Collapse Direction:=wdCollapseEnd 
 End With 
Next aFont

See also

Global Object

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.