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

MethodDescription
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:

ParameterTypeDescription
shapeTriggerIShapeShape object IShape

Returns: ISequence - New sequence ISequence

remove(ISequence item)

public abstract void remove(ISequence item)

Removes specified sequence from a collection.

Parameters:

ParameterTypeDescription
itemISequenceSequence to remove.

removeAt(int index)

public abstract void removeAt(int index)

Removes sequence at the specified index.

Parameters:

ParameterTypeDescription
indexintIndex 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:

ParameterTypeDescription
indexintIndex of element.

Returns: ISequence - The ISequence object.