BehaviorCollection

BehaviorCollection

Overview

BehaviorCollection is a class in Aspose.Slides FOSS for Python. Inherits from: BaseCollection, IBehaviorCollection.

Represents collection of behavior effects.

This class provides 10 methods for working with BehaviorCollection objects in Python programs. Available methods include: add, as_i_enumerable, clear, contains, copy_to, count, index_of, insert, remove, remove_at. All public members are accessible to any Python application after installing the Aspose.Slides FOSS for Python package. Properties: as_i_enumerable, count, is_read_only, length.

Properties

NameTypeAccessDescription
countintReadGets the count.
is_read_onlyboolReadGets the is read only.
as_i_enumerableAnyReadGets the as i enumerable.
lengthintReadReturns the number of elements.

Methods

SignatureDescription
add(item)Adds the specified behavior item to the collection
index_of(item)intReturns the zero‑based index of the given behavior item
insert(index, item)Inserts a behavior item at the specified index in the collection
copy_to(array, array_index)Copies the collection elements into the provided array starting at array_index
remove(item)boolDeletes the specified behavior item and returns True if successful
remove_at(index)Removes the behavior item at the given index
clear()Removes all behavior items from the collection
contains(item)boolReturns a boolean indicating whether the specified behavior is present in the collection
count()intReturns the number of behaviors in a collection.
as_i_enumerable()AnyReturns IEnumerable interface.

See Also