Range.ShapeRange property (Word)
Returns a ShapeRange collection that represents all the Shape objects in the specified range. Read-only.
Syntax
expression.ShapeRange
expression A variable that represents a Range object.
Remarks
A shape range can contain drawings, shapes, pictures, OLE objects, ActiveX controls, text objects, and callouts.
Example
The following example sets the fill foreground color to purple for all the shapes in the active document.
ActiveDocument.Content.ShapeRange.Fill.ForeColor.RGB = _
RGB(255, 0, 255)
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.