Range.Bold property (Word)

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.

If Selection.Type = wdSelectionNormal Then 
 Selection.Range.Bold = wdToggle 
End If

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

ActiveDocument.Paragraphs(1).Range.Bold = True

See also

Range Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.