Font.Bold Property

Word Developer Reference

True if the font is formatted as bold. Read/write Long.

Syntax

expression.Bold

expression   A variable that represents a Font object.

Remarks

Returns True, False or wdUndefined (a mixture of True and False). Can be set to True, False, or wdToggle.

Example

This example makes the entire selection bold if part of the selection is formatted as bold.

Visual Basic for Applications
  If Selection.Type = wdSelectionNormal Then
    If Selection.Font.Bold = wdUndefined Then _
        Selection.Font.Bold = True
Else
    MsgBox "You need to select some text."
End If

See Also