Selection.Collapse method (Word)
Collapses a selection to the starting or ending position. After a selection is collapsed, the starting and ending points are equal.
Syntax
expression. Collapse
( _Direction_
)
expression Required. A variable that represents a Selection object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Direction | Optional | Variant | The direction in which to collapse the range or selection. Can be either of the following WdCollapseDirection constants: wdCollapseEnd or wdCollapseStart. The default value is wdCollapseStart. |
Example
This example collapses the selection to an insertion point at the beginning of the previous selection.
Selection.Collapse Direction:=wdCollapseStart
See also
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.