remove_at method

remove_at

Removes the element at the specified index in a 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 comment is already removed.

See Also