Word) (Font.Grow 方法
會將字型大小放大為下一個可用的字型大小。
expression. Grow
需要 expression。 代表 Font 物件的變數。
如果選取範圍或範圍中包含多種字型大小,則每種字型大小都會放大為下一個有效設定。
這個範例會放大新文件中第四個字的字型大小。
Dim rngTemp As Range
Set rngTemp = Documents.Add.Content
rngTemp.InsertAfter "This is a test of the Grow method."
MsgBox "Click OK to increase the font size of the fourth word."
rngTemp.Words(4).Font.Grow
這個範例會放大選取之文字的字型大小。
If Selection.Type = wdSelectionNormal Then
Selection.Font.Grow
Else
MsgBox "You need to select some text."
End If
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。