remove_at method

remove_at

Removes the element at the specified index of the collection.

def remove_at(self, index):
    ...
ParameterTypeDescription
indexintThe zero-based index of the element to remove.

Remarks

To avoid throwing of the PptxEditException check master’s HasDependingSlides property before.

Exceptions

ExceptionDescription
PptxEditExceptionThrown if the master to remove is used in presentation (its HasDependingSlides property is true).

See Also