Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns or sets the name of the specified object. Read/write String.
Syntax
expression .Name
expression Required. A variable that represents a Font object.
Example
This example formats the selection as Arial bold.
With Selection.Font
.Name = "Arial"
.Bold = True
End With