Global.LandscapeFontNames プロパティ (Word)
すべての使用可能な横フォントの名前を含む FontNames オブジェクトを返します。
構文
式。 LandscapeFontNames
expression 必須です。 'Global' オブジェクトを表す変数。
例
次の使用例は、 FontNames オブジェクトにフォント名の新しいドキュメントの並べ替えられたリストを作成します。
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
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。