[]
Gets a IShapeRange object that represents all shapes in a IWorksheet object.
IShapeRange Range()
Function Range() As IShapeRange
Type | Description |
---|---|
IShapeRange | The subset of the shapes in a IShapes collection. |
Gets a IShapeRange object that represents a subset of the shapes in a IShapes collection.
IShapeRange Range(params int[] indexes)
Function Range(ParamArray indexes As Integer()) As IShapeRange
Type | Name | Description |
---|---|---|
int[] | indexes | The individual shapes to be included in the range. |
Type | Description |
---|---|
IShapeRange | The subset of the shapes in a IShapes collection. |
Gets a IShapeRange object that represents a subset of the shapes in a IShapes collection.
IShapeRange Range(params string[] names)
Function Range(ParamArray names As String()) As IShapeRange
Type | Name | Description |
---|---|---|
string[] | names | The individual shapes to be included in the range. |
Type | Description |
---|---|
IShapeRange | The subset of the shapes in a IShapes collection. |
Gets a IShapeRange object that represents a subset of the shapes in a IShapes collection.
IShapeRange Range(params object[] shapes)
Function Range(ParamArray shapes As Object()) As IShapeRange
Type | Name | Description |
---|---|---|
object[] | shapes | The individual shapes to be included in the range. Any IShape object, shape index or shape name can be used. |
Type | Description |
---|---|
IShapeRange | The subset of the shapes in a IShapes collection. |