Global.LandscapeFontNames property (Word)
Returns a FontNames object that includes the names of all the available landscape fonts.
Syntax
expression. LandscapeFontNames
expression Required. A variable that represents a 'Global' object.
Example
This example creates a sorted list in a new document of the landscape font names in the FontNames object.
Sub ListLandscapeFonts()
Dim docNew As Document
Dim intCount As Integer
Set docNew = Documents.Add
docNew.Content.InsertAfter "Landscape Fonts" & vbLf
For intCount = 1 To LandscapeFontNames.Count
docNew.Content.InsertAfter LandscapeFontNames(intCount) _
& vbLf
Next
With docNew
.Range(Start:=.Paragraphs(2).Range.Start, End:=.Paragraphs _
(docNew.Paragraphs.Count).Range.End).Select
End With
Selection.Sort
End Sub
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.