Font.Bold Property (Word)
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.
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