Reorder

Reorder(int, ISlide)

Moves slide from the collection to the specified position.

public void Reorder(int index, ISlide slide)
ParameterTypeDescription
indexInt32Target index.
slideISlideSlide to move.

See Also


Reorder(int, params ISlide[])

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

public void Reorder(int index, params ISlide[] slides)
ParameterTypeDescription
indexInt32Target index.
slidesISlide[]Slides to move.

See Also