public interface IBehaviorPropertyCollection extends com.aspose.ms.System.Collections.Generic.IGenericList<IBehaviorProperty>
Represents timing properties for the effect behavior.
Modifier and Type | Method and Description |
---|---|
void |
add(java.lang.String propertyValue)
Adds a new property to the collection.
|
boolean |
contains(java.lang.String propertyValue)
Determines whether the
IGenericCollection contains a specific value. |
int |
indexOf(java.lang.String propertyValue)
Determines the index of a specific item by property value in the
List . |
void |
insert(int index,
java.lang.String propertyValue)
Inserts a new property (with the specified property value) to the collection at the specified index.
|
boolean |
remove(java.lang.String propertyValue)
Removes specified property from the collection.
|
get_Item, indexOfItem, insertItem, removeAt, set_Item
addItem, clear, containsItem, copyToTArray, isReadOnly, removeItem, size
void add(java.lang.String propertyValue)
Adds a new property to the collection.
propertyValue
- Value of the property to add.int indexOf(java.lang.String propertyValue)
Determines the index of a specific item by property value in the List
.
propertyValue
- value of the propertyvoid insert(int index, java.lang.String propertyValue)
Inserts a new property (with the specified property value) to the collection at the specified index.
index
- Index where a new property should be inserted.propertyValue
- Value of the property to add.boolean remove(java.lang.String propertyValue)
Removes specified property from the collection.
propertyValue
- Value of the property to remove.boolean
boolean contains(java.lang.String propertyValue)
Determines whether the IGenericCollection
contains a specific value.
propertyValue
- Value of the property to locate in the IGenericCollection
.IGenericCollection
; otherwise, false.Copyright © 2004-2022 Aspose Pty Ltd. All Rights Reserved.