Selection.Expand Method

Word Developer Reference

Expands the specified range or selection. Returns the number of characters added to the range or selection. Long.

Syntax

expression.Expand(Unit)

expression   Required. A variable that represents a Selection object.

Parameters

Name Required/Optional Data Type Description
Unit Optional Variant A WdUnits constant that represents the unit by which to expand the range. The default value is wdWord.

Example

This example capitalizes the first character in the selection and then expands the selection to include the entire sentence.

Visual Basic for Applications
  With Selection
    .Characters(1).Case = wdTitleSentence
    .Expand Unit:=wdSentence
End With

See Also