Font.Name property (Word)
Returns or sets the name of the specified object. Read/write String.
expression.Name
expression Required. A variable that represents a Font object.
This example formats the selection as Arial bold.
With Selection.Font
.Name = "Arial"
.Bold = True
End With
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.