public class SequenceCollection extends java.lang.Object implements ISequenceCollection
Represent collection of interactive sequences.
Modifier and Type | Method and Description |
---|---|
ISequence |
add(IShape shapeTrigger)
Add new interactive sequence.
|
void |
clear()
Removes all sequences from a collection.
|
ISequence |
get_Item(int index)
Returns a sequense at the specified index.
|
int |
getCount()
Returns the number of elements in a collection
Read-only
int . |
com.aspose.ms.System.Collections.Generic.IGenericEnumerator<ISequence> |
iterator()
Returns an enumerator that iterates through the collection.
|
void |
remove(ISequence item)
Removes specified sequence from a collection.
|
void |
removeAt(int index)
Removes sequence at the specified index.
|
public final int getCount()
Returns the number of elements in a collection
Read-only int
.
getCount
in interface ISequenceCollection
public final ISequence add(IShape shapeTrigger)
Add new interactive sequence.
Read/write Sequence
.
add
in interface ISequenceCollection
public final void remove(ISequence item)
Removes specified sequence from a collection.
remove
in interface ISequenceCollection
item
- Sequence to remove.public final void removeAt(int index)
Removes sequence at the specified index.
removeAt
in interface ISequenceCollection
index
- Index of a sequence that should be deleted.public final void clear()
Removes all sequences from a collection.
clear
in interface ISequenceCollection
public final ISequence get_Item(int index)
Returns a sequense at the specified index.
get_Item
in interface ISequenceCollection
index
- Index of element.ISequence
object.public final com.aspose.ms.System.Collections.Generic.IGenericEnumerator<ISequence> iterator()
Returns an enumerator that iterates through the collection.
iterator
in interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable<ISequence>
iterator
in interface com.aspose.ms.System.Collections.IEnumerable<ISequence>
iterator
in interface java.lang.Iterable<ISequence>
System.Collections.Generic.IEnumerator`1
that can be used to iterate through the collection.