com.aspose.slides
Class BehaviorPropertiesEx

java.lang.Object
  extended by com.aspose.slides.BehaviorPropertiesEx
All Implemented Interfaces:
com.aspose.ms.System.Collections.IEnumerable, java.lang.Iterable

public class BehaviorPropertiesEx
extends java.lang.Object
implements com.aspose.ms.System.Collections.IEnumerable

Represents timing properties for the effect behavior.


Method Summary
 int add(int item)
           Adds a new property to the collection.
 void clear()
           Removes all properties from the collection.
 int get_Item(int index)
           Returns a property at the specified index.
 int getCount()
           Returns the number of properties stored in the collection.
 void insert(int index, int item)
           Inserts a new property to the collection at the specified index.
 com.aspose.ms.System.Collections.IEnumerator iterator()
           Returns an iterator for the collection.
 void remove(int item)
           Removes specified property from the collection.
 void removeAt(int index)
           Removes property at the specified index.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getCount

public int getCount()

Returns the number of properties stored in the collection.


add

public int add(int item)

Adds a new property to the collection.

Parameters:
item - Property to add.
Returns:
Index in the collection where a new property is added.

insert

public void insert(int index,
                   int item)

Inserts a new property to the collection at the specified index.

Parameters:
index - Index where a new property should be inserted.
item - Property to add.

remove

public void remove(int item)

Removes specified property from the collection.

Parameters:
item - Property to remove.

removeAt

public void removeAt(int index)

Removes property at the specified index.

Parameters:
index - Index of the property which should be deleted.

clear

public void clear()

Removes all properties from the collection.


get_Item

public int get_Item(int index)

Returns a property at the specified index.

Parameters:
index - Index of a property to return.
Returns:
Animation behavior property.

iterator

public com.aspose.ms.System.Collections.IEnumerator iterator()

Returns an iterator for the collection.

Specified by:
iterator in interface com.aspose.ms.System.Collections.IEnumerable
Specified by:
iterator in interface java.lang.Iterable
Returns:
Iterator.