reorder method
Contents
[
Hide
]reorder
Moves the specified shape to a new position within the shape collection.
def reorder(self, index, shape):
...
| Parameter | Type | Description |
|---|---|---|
| index | int | The zero-based target index where the shape will be placed. |
| shape | IShape | The IShape to move within the collection. |
reorder
Moves the specified shapes within the shape collection, placing them starting at the given index.
def reorder(self, index, shapes):
...
| Parameter | Type | Description |
|---|---|---|
| index | int | The zero-based target index where the first specified shape will be placed; subsequent shapes follow in the order provided. |
| shapes | List[IShape] | One or more IShape instances to move within the collection. |
See Also
- class
IShape - class
ShapeCollection - module
aspose.slides - library
Aspose.Slides