com.aspose.slides.pptx.animation
Class SequencesEx

java.lang.Object
  extended by com.aspose.slides.pptx.animation.SequencesEx
All Implemented Interfaces:
java.lang.Iterable<SequenceEx>

public class SequencesEx
extends java.lang.Object
implements java.lang.Iterable<SequenceEx>

Collection of interactive sequences.


Method Summary
 SequenceEx add(ShapeEx shapeTrigger)
          Add new interactive sequence at the end of a collection.
 void clear()
          Removes all animation sequences from a collection
 SequenceEx get(int index)
          Returns the animation sequence at the specified index.
 java.util.Iterator<SequenceEx> iterator()
          Returns the iterator for the entire collection.
 void remove(SequenceEx item)
          Removes specified animation sequence from a collection.
 void removeAt(int index)
          Removes the animation sequence from a collection at the specified index.
 int size()
          Returns the number of interactive sequences in a 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 interactive sequences in a collection.


add

public SequenceEx add(ShapeEx shapeTrigger)
Add new interactive sequence at the end of a collection.


remove

public void remove(SequenceEx item)
Removes specified animation sequence from a collection.


removeAt

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


clear

public void clear()
Removes all animation sequences from a collection


get

public SequenceEx get(int index)
Returns the animation sequence at the specified index.


iterator

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

Specified by:
iterator in interface java.lang.Iterable<SequenceEx>