ISequenceCollection
All Implemented Interfaces: com.aspose.ms.System.Collections.Generic.IGenericEnumerable
public interface ISequenceCollection extends System.Collections.Generic.IGenericEnumerable<ISequence>
Represents collection of interactive sequences.
Methods
Method | Description |
---|---|
getCount() | Returns the number of elements in a collection Read-only int. |
add(IShape shapeTrigger) | Add new interactive sequence. |
remove(ISequence item) | Removes specified sequence from a collection. |
removeAt(int index) | Removes sequence at the specified index. |
clear() | Removes all sequences from a collection. |
get_Item(int index) | Returns a sequense at the specified index. |
getCount()
public abstract int getCount()
Returns the number of elements in a collection Read-only int.
Returns: int
add(IShape shapeTrigger)
public abstract ISequence add(IShape shapeTrigger)
Add new interactive sequence.
Parameters:
Parameter | Type | Description |
---|---|---|
shapeTrigger | IShape | Shape object IShape |
Returns: ISequence - New sequence ISequence
remove(ISequence item)
public abstract void remove(ISequence item)
Removes specified sequence from a collection.
Parameters:
Parameter | Type | Description |
---|---|---|
item | ISequence | Sequence to remove. |
removeAt(int index)
public abstract void removeAt(int index)
Removes sequence at the specified index.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | Index of element in the collection int |
clear()
public abstract void clear()
Removes all sequences from a collection.
get_Item(int index)
public abstract ISequence get_Item(int index)
Returns a sequense at the specified index.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int | Index of element. |