com.aspose.slides.pptx.animation
Class AnimPointsEx

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

public class AnimPointsEx
extends java.lang.Object

Collection of animation points.


Constructor Summary
AnimPointsEx()
          Default constructor.
 
Method Summary
 int add(AnimPointEx item)
          Add new animation point at the end of a collection.
 void clear()
          Removes all animation points from a collection.
 AnimPointEx get(int index)
          Returns the animation point at the specified position.
 void insert(int index, AnimPointEx item)
          Inserts new animation point to a collection at the specified index.
 java.util.Iterator iterator()
          Returns the iterator for the entire collection.
 void remove(AnimPointEx item)
          Removes the specified animation point from a collection.
 void removeAt(int index)
          Removes the animation point from a collection at the specified index.
 int size()
          Returns the number of points in the collection.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AnimPointsEx

public AnimPointsEx()
Default constructor.

Method Detail

size

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


add

public int add(AnimPointEx item)
Add new animation point at the end of a collection.


insert

public void insert(int index,
                   AnimPointEx item)
Inserts new animation point to a collection at the specified index.


remove

public void remove(AnimPointEx item)
Removes the specified animation point from a collection.


removeAt

public void removeAt(int index)
Removes the animation point from a collection at the specified index.


clear

public void clear()
Removes all animation points from a collection.


get

public AnimPointEx get(int index)
Returns the animation point at the specified position.


iterator

public java.util.Iterator iterator()
Returns the iterator for the entire collection.