reorder method

reorder

Moves slide from the collection to the specified position.

def reorder(self, index, slide):
    ...
ParameterTypeDescription
indexintTarget index.
slideISlideSlide to move.

reorder

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

def reorder(self, index, slides):
    ...
ParameterTypeDescription
indexintTarget index.
slidesList[ISlide]Slides to move.

See Also