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

MethodDescription
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:

ParameterTypeDescription
propertyValuejava.lang.StringValue 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:

ParameterTypeDescription
propertyValuejava.lang.Stringvalue 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:

ParameterTypeDescription
indexintIndex where a new property should be inserted.
propertyValuejava.lang.StringValue of the property to add.

remove(String propertyValue)

public abstract boolean remove(String propertyValue)

Removes specified property from the collection.

Parameters:

ParameterTypeDescription
propertyValuejava.lang.StringValue 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:

ParameterTypeDescription
propertyValuejava.lang.StringValue of the property to locate in the IGenericCollection.

Returns: boolean - true if propertyValue is found in the IGenericCollection; otherwise, false.