Font Object

Description

Contains font attributes (font name, font size, color, and so on) for an object.

Using the Font Object

Use the Font property to return the Font object. The following instruction applies bold formatting to the selection.

Selection.Font.Bold = True
The following example formats the first paragraph in the active document as 24-point Arial and italic.

Set myRange = ActiveDocument.Paragraphs(1).Range
With myRange.Font
    .Bold = True
    .Name = "Arial"
    .Size = 24
End With
The following example changes the formatting of the Heading 2 style in the active document to Arial and bold.

With ActiveDocument.Styles(wdStyleHeading2).Font
    .Name = "Arial"
    .Italic = True
End With
Remarks

You can use the New keyword to create a new, stand-alone Font object. The following example creates a Font object, sets some formatting properties, and then applies the Font object to the first paragraph in the active document.

Set myFont = New Font
myFont.Bold = True
myFont.Name = "Arial"
ActiveDocument.Paragraphs(1).Range.Font = myFont
You can also duplicate a Font object by using the Duplicate property. The following example creates a new character style with the character formatting from the selection as well as italic formatting. The formatting of the selection isn't changed.

Set aFont = Selection.Font.Duplicate
aFont.Italic = True
ActiveDocument.Styles.Add(Name:="Italics", Type:=wdStyleTypeCharacter).Font = aFont
Properties

AllCaps property, Animation property, Application property, Bold property, Borders property, ColorIndex property, Creator property, DoubleStrikeThrough property, Duplicate property, Emboss property, Engrave property, Hidden property, Italic property, Kerning property, Name property, NameAscii property, NameFarEast property, NameOther property, Outline property, Parent property, Position property, Scaling property, Shading property, Shadow property, Size property, SmallCaps property, Spacing property, StrikeThrough property, Subscript property, Superscript property, Underline property.

Methods

Grow method, Reset method, SetAsTemplateDefault method, Shrink method.