Range.Next method (Word)

Returns a Range object that represents the specified unit relative to the specified range.

Syntax

expression.Next (Unit, Count)

expression Required. A variable that represents a Range object.

Parameters

Name Required/Optional Data type Description
Unit Optional Variant The type of units by which to count. Can be any WdUnits constant.
Count Optional Variant The number of units by which you want to move ahead. The default value is one.

Return value

Range

Remarks

If the range is just before the specified Unit, the range is moved to the following unit. For example, if the range is just before a word, the following instruction moves the selected text forward to the following word.

Selection.Range.Next(Unit:=wdWord, Count:=1).Select

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.