com.aspose.slides.pptx.animation
Class BehaviorPropertiesEx

java.lang.Object
  extended by com.aspose.slides.pptx.animation.BehaviorPropertiesEx

public class BehaviorPropertiesEx
extends java.lang.Object

Collection of properties of an animation behavior.


Method Summary
 int add(PropertyTypeEx item)
          Adds new animation property at the end of the collection.
 void clear()
          Removes all of the animation properties from the collection.
 PropertyTypeEx get(int index)
          Returns the animation property at the specified position in the collection.
 void insert(int index, PropertyTypeEx item)
          Inserts the animation property at the specified position in the collection.
 java.util.Iterator iterator()
          Returns an iterator over the animation properties in the collection.
 void remove(PropertyTypeEx item)
          Removes the first occurrence of the animation property in the collection.
 void removeAt(int index)
          Removes the animation property at the specified position in the collection.
 int size()
          Returns the number of animation properties in the collection.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

size

public int size()
Returns the number of animation properties in the collection.


add

public int add(PropertyTypeEx item)
Adds new animation property at the end of the collection.

Parameters:
item - the animation property to be added at the end of the collection.
Returns:
The index at which the animation property has been added.

insert

public void insert(int index,
                   PropertyTypeEx item)
Inserts the animation property at the specified position in the collection.

Parameters:
index - index at which the animation property is to be inserted.
item - animation property to be inserted.

remove

public void remove(PropertyTypeEx item)
Removes the first occurrence of the animation property in the collection. If the collection does not contain the animation property, it is unchanged.

Parameters:
item - animation property to be removed from the collection, if present.

removeAt

public void removeAt(int index)
Removes the animation property at the specified position in the collection.

Parameters:
index - the index of the animation property to be removed.

clear

public void clear()
Removes all of the animation properties from the collection.


get

public PropertyTypeEx get(int index)
Returns the animation property at the specified position in the collection.

Parameters:
index - index of animation property to return.
Returns:
animation property at the specified index.

iterator

public java.util.Iterator iterator()
Returns an iterator over the animation properties in the collection.

Returns:
an iterator over the animation properties in the collection.