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
System.Collections.Generic.ICollection`1 contains a specific value. |
int |
indexOf(java.lang.String propertyValue)
Determines the index of a specific item by property value in the
System.Collections.Generic.IList`1 . |
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 System.Collections.Generic.IList`1
.
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 contains(java.lang.String propertyValue)
Determines whether the System.Collections.Generic.ICollection`1
contains a specific value.
propertyValue
- Value of the property to locate in the System.Collections.Generic.ICollection`1
.propertyValue
is found in the System.Collections.Generic.ICollection`1
; otherwise, false.