Reorder()

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

Moves a shape from the collection to the specified position.

void Aspose::Slides::ShapeCollection::Reorder(int32_t index, System::SharedPtr<IShape> shape) override

Arguments

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

ShapeCollection::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.

void Aspose::Slides::ShapeCollection::Reorder(int32_t index, const System::ArrayPtr<System::SharedPtr<IShape>> &shapes) override

Arguments

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

See Also