英語で読む

次の方法で共有


Font.Spacing プロパティ (Word)

文字の間隔をポイント単位で) を設定または返します。 読み取り/書き込み 1 つ です。

構文

Spacing

expression 必須です。 Font オブジェクトを表す変数を指定します。

次の使用例は、作業中の文書の先頭に 2 種類の文字間隔の例を示します。

Set myRange = ActiveDocument.Range(Start:=0, End:=0) 
With myRange 
 .InsertAfter "Demonstration of no character spacing." 
 .InsertParagraphAfter 
 .InsertAfter "Demonstration of character spacing (1.5pt)." 
 .InsertParagraphAfter 
End With 
ActiveDocument.Paragraphs(2).Range.Font.Spacing = 1.5

次の使用例は、選択した文字列の文字間隔を 2 ポイントに設定します。

If Selection.Type = wdSelectionNormal Then 
 Selection.Font.Spacing = 2 
Else 
 MsgBox "You need to select some text." 
End If

関連項目

Font オブジェクト

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。