IBehaviorPropertyCollection
All Implemented Interfaces: com.aspose.ms.System.Collections.Generic.IGenericList
public interface IBehaviorPropertyCollection extends System.Collections.Generic.IGenericList<IBehaviorProperty>
Represents timing properties for the effect behavior.
Methods
Method | Description |
---|---|
add(String propertyValue) | Adds a new property to the collection. |
indexOf(String propertyValue) | Determines the index of a specific item by property value in the List. |
insert(int index, String propertyValue) | Inserts a new property (with the specified property value) to the collection at the specified index. |
remove(String propertyValue) | Removes specified property from the collection. |
contains(String propertyValue) | Determines whether the IGenericCollection contains a specific value. |
add(String propertyValue)
public abstract void add(String propertyValue)
Adds a new property to the collection.
Parameters:
Parameter | Type | Description |
---|---|---|
propertyValue | java.lang.String | Value of the property to add. |
indexOf(String propertyValue)
public abstract int indexOf(String propertyValue)
Determines the index of a specific item by property value in the List.
Parameters:
Parameter | Type | Description |
---|---|---|
propertyValue | java.lang.String | value of the property |
Returns: int - The index of the property with the specified value
insert(int index, String propertyValue)
public abstract void insert(int index, String propertyValue)
Inserts a new property (with the specified property value) to the collection at the specified index.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | Index where a new property should be inserted. |
propertyValue | java.lang.String | Value of the property to add. |
remove(String propertyValue)
public abstract boolean remove(String propertyValue)
Removes specified property from the collection.
Parameters:
Parameter | Type | Description |
---|---|---|
propertyValue | java.lang.String | Value of the property to remove. |
Returns: boolean - True if a property removed successfully boolean
contains(String propertyValue)
public abstract boolean contains(String propertyValue)
Determines whether the IGenericCollection contains a specific value.
Parameters:
Parameter | Type | Description |
---|---|---|
propertyValue | java.lang.String | Value of the property to locate in the IGenericCollection. |
Returns: boolean - true if propertyValue is found in the IGenericCollection; otherwise, false.