Range.Bold Property

Word Developer Reference

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

Syntax

expression.Bold

expression   A variable that represents a Range object.

Remarks

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

Example

This example toggles the bold format for the selected text.

Visual Basic for Applications
  If Selection.Type = wdSelectionNormal Then
    Selection.Range.Bold = wdToggle
End If

This example makes the first paragraph in the active document bold.

Visual Basic for Applications
  ActiveDocument.Paragraphs(1).Range.Bold = True

See Also