Font.Grow method (Word)
Increases the font size to the next available size.
expression. Grow
expression Required. A variable that represents a Font object.
If the selection or range contains more than one font size, each size is increased to the next available setting.
This example increases the font size of the fourth word in a new document.
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
This example increases the font size of the selected text.
If Selection.Type = wdSelectionNormal Then
Selection.Font.Grow
Else
MsgBox "You need to select some text."
End If
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.