remove_at method

remove_at

Removes the author at the specified index of the collection.

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

Exceptions

ExceptionDescription
RuntimeError(Proxy error(ArgumentOutOfRangeException))Index is less than 0 or index is equal or greater than Count
PptxEditExceptionThrown if author is already removed.

See Also