Share via


Range Method

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

                 

Document object: Returns a Range object by using the specified starting and ending character positions. For information about Range objects, see Working with Range objects.

Shapes object: Returns a ShapeRange object that represents a subset of shapes in the Shapes collection.

Syntax 1

expression**.Range(Start**, End)

Syntax 2

expression**.Range(Index)**

expression   Required. An expression that returns a Document object (Syntax 1) or a Shapes object (Syntax 2).

Start   Optional Long. The starting character position.

End   Optional Long. The ending character position.

Index   Required Variant. Specifies which shapes are to be included in the specified range. Can be an integer that specifies the index number of a shape within the Shapes collection, a string that specifies the name of a shape, or a Variant array that contains integers or strings.

Remarks

Character position values begin with 0 (zero) at the beginning of the document. All characters are counted, including nonprinting characters. Hidden characters are counted even if they're not displayed. If you don't specify starting and ending character positions for the Range method, the entire document is returned as a Range object.

ShapeRange objects don't include InlineShape objects. An InlineShape object is equivalent to a character and is positioned as a character within a range of text. Shape objects are anchored to a range of text (the selection, by default), but they can be positioned anywhere on the page. A Shape object will always appear on the same page as the range it's anchored to.

Most operations that you can do with a Shape object you can also do with a ShapeRange object that contains a single shape. Some operations, when performed on a ShapeRange object that contains multiple shapes, produce an error.