Reorder()

IShapeCollection::Reorder(int32_t, System::SharedPtr<IShape>) method

Moves a shape from the collection to the specified position.

virtual void Aspose::Slides::IShapeCollection::Reorder(int32_t index, System::SharedPtr<IShape> shape)=0

Arguments

ParameterTypeDescription
indexint32_tTarget index.
shapeSystem::SharedPtr<IShape>Shape to move.

IShapeCollection::Reorder(int32_t, const System::ArrayPtr<System::SharedPtr<IShape>>&) method

Moves shapes from the collection to the specified position. Shapes will be placed starting from index in order they appear in list.

virtual void Aspose::Slides::IShapeCollection::Reorder(int32_t index, const System::ArrayPtr<System::SharedPtr<IShape>> &shapes)=0

Arguments

ParameterTypeDescription
indexint32_tTarget index.
shapesconst System::ArrayPtr<System::SharedPtr<IShape>>&Shapes to move.

See Also