com.aspose.slides.pptx.animation
Class PointsEx

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

public class PointsEx
extends java.lang.Object

Collection of animation points.


Constructor Summary
PointsEx()
          Default constructor.
 
Method Summary
 int add(PointEx item)
          Add new animation point at the end of a collection.
 void clear()
          Removes all animation points from a collection.
 PointEx get(int index)
          Returns the animation point at the specified position.
 void insert(int index, PointEx 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(PointEx 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

PointsEx

public PointsEx()
Default constructor.

Method Detail

size

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


add

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


insert

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


remove

public void remove(PointEx 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 PointEx get(int index)
Returns the animation point at the specified position.


iterator

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