BehaviorPropertyCollection
BehaviorPropertyCollection class
Represents timing properties for the effect behavior.
add
| Name | Description |
|---|---|
| add (BehaviorProperty) | Adds a new property to the collection. |
Parameters:
| Name | Type | Description |
|---|---|---|
| item | BehaviorProperty | Property to add. |
Returns: void
add
| Name | Description |
|---|---|
| add (String) | Adds a new property to the collection. |
Parameters:
| Name | Type | Description |
|---|---|---|
| propertyValue | String | Value of the property to add. |
Returns: void
addItem
| Name | Description |
|---|---|
| addItem (BehaviorProperty) |
Returns: void
clear
| Name | Description |
|---|---|
| clear () | Removes all properties from the collection. |
Returns: void
contains
| Name | Description |
|---|---|
| contains (BehaviorProperty) | Determines whether the IGenericCollection contains a specific value. |
Parameters:
| Name | Type | Description |
|---|---|---|
| item | BehaviorProperty | The property to locate in the IGenericCollection. |
Returns: boolean
contains
| Name | Description |
|---|---|
| contains (String) | Determines whether the IGenericCollection contains a specific value. |
Parameters:
| Name | Type | Description |
|---|---|---|
| propertyValue | String | Value of the property to locate in the IGenericCollection. |
Returns: boolean
containsItem
| Name | Description |
|---|---|
| containsItem (BehaviorProperty) |
Returns: boolean
copyTo
| Name | Description |
|---|---|
| copyTo (com.aspose.slides.IBehaviorProperty[], int) | Copies the elements of the IGenericCollection to an Array, starting at a particular Array index. |
Parameters:
| Name | Type | Description |
|---|---|---|
| array | com.aspose.slides.IBehaviorProperty[] | The one-dimensional Array that is the destination of the elements copied from IGenericCollection. The Array must have zero-based indexing. |
| arrayIndex | int | The zero-based index in array at which copying begins. |
Returns: void
Exception
| Error | Condition |
|---|---|
| com.aspose.ms.System.ArgumentException | The number of elements in the source IGenericCollection is greater than the available space from arrayIndex to the end of the destination array. |
copyToTArray
| Name | Description |
|---|---|
| copyToTArray (com.aspose.slides.IBehaviorProperty[], int) |
Returns: void
get_Item
| Name | Description |
|---|---|
| get_Item (int) | Returns a property at the specified index. |
Parameters:
| Name | Type | Description |
|---|---|---|
| index | int | Index of a property to return. |
Returns: BehaviorProperty
indexOf
| Name | Description |
|---|---|
| indexOf (BehaviorProperty) | Determines the index of a specific item in the List. |
Parameters:
| Name | Type | Description |
|---|---|---|
| item | BehaviorProperty | The object to locate in the List. |
Returns: int
indexOf
| Name | Description |
|---|---|
| indexOf (String) | Determines the index of a specific item by property value in the List. |
Parameters:
| Name | Type | Description |
|---|---|---|
| propertyValue | String | value of the property |
Returns: int
indexOfItem
| Name | Description |
|---|---|
| indexOfItem (BehaviorProperty) |
Returns: int
insert
| Name | Description |
|---|---|
| insert (int, BehaviorProperty) | Inserts a new property to the collection at the specified index. |
Parameters:
| Name | Type | Description |
|---|---|---|
| index | int | Index where a new property should be inserted. |
| item | BehaviorProperty | Property to add. |
Returns: void
insert
| Name | Description |
|---|---|
| insert (int, String) | Inserts a new property (with the specified property value) to the collection at the specified index. |
Parameters:
| Name | Type | Description |
|---|---|---|
| index | int | Index where a new property should be inserted. |
| propertyValue | String | Value of the property to add. |
Returns: void
insertItem
| Name | Description |
|---|---|
| insertItem (int, BehaviorProperty) |
Returns: void
isReadOnly
| Name | Description |
|---|---|
| isReadOnly () | Gets a value indicating whether the IGenericCollection is read-only. Read-only boolean. |
Returns: boolean
iterator
| Name | Description |
|---|---|
| iterator () | Returns an enumerator that iterates through the collection. |
Returns:
iteratorJava
| Name | Description |
|---|---|
| iteratorJava () | Returns a java iterator for the entire collection. |
Returns:
remove
| Name | Description |
|---|---|
| remove (BehaviorProperty) | Removes specified property from the collection. |
Parameters:
| Name | Type | Description |
|---|---|---|
| item | BehaviorProperty | Property to remove. |
Returns: boolean
remove
| Name | Description |
|---|---|
| remove (String) | Removes specified property from the collection. |
Parameters:
| Name | Type | Description |
|---|---|---|
| propertyValue | String | Value of the property to remove. |
Returns: boolean
removeAt
| Name | Description |
|---|---|
| removeAt (int) | Removes property at the specified index. |
Parameters:
| Name | Type | Description |
|---|---|---|
| index | int | Index of the property which should be deleted. |
Returns: void
removeItem
| Name | Description |
|---|---|
| removeItem (BehaviorProperty) |
Returns: boolean
set_Item
| Name | Description |
|---|---|
| set_Item (int, BehaviorProperty) | Sets a property at the specified index. |
Parameters:
| Name | Type | Description |
|---|---|---|
| index | int | Index of a property to return. |
Returns: void
size
| Name | Description |
|---|---|
| size () | Returns the number of properties stored in the collection. Read-only int. |
Returns: int