Range.Collapse(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Collapses a range to the starting or ending position.
public void Collapse (ref object Direction);
abstract member Collapse : obj -> unit
Public Sub Collapse (Optional ByRef Direction As Object)
Parameters
- Direction
- Object
Optional Object. 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.
Remarks
After a range is collapsed, the starting and ending points are equal.
If you use wdCollapseEnd to collapse a range that refers to an entire paragraph, the range is located after the ending paragraph mark (the beginning of the next paragraph). However, you can move the range back one character by using the MoveEnd(Object, Object) method after the range is collapsed.