Share via


Range.Select Method

Word Developer Reference

Selects the specified range.

Syntax

expression.Select

expression   Required. A variable that represents a Range object.

Example

This example selects the first paragraph in the active document.

Visual Basic for Applications
  Sub SelectParagraph()
    ActiveDocument.Paragraphs(1).Range.Select
    Selection.Font.Bold = True
End Sub

See Also