com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface ISequenceCollection

  • All Superinterfaces:
    com.aspose.ms.System.Collections.IEnumerable<ISequence>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<ISequence>, java.lang.Iterable<ISequence>
    All Known Implementing Classes:
    SequenceCollection


    public interface ISequenceCollection
    extends com.aspose.ms.System.Collections.Generic.IGenericEnumerable<ISequence>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      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 sequence at the specified index.
      int getCount()
      Returns the number of elements in a collection Read-only int.
      void remove(ISequence item)
      Removes specified sequence from a collection.
      void removeAt(int index)
      Removes sequence at the specified index.
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable

        iterator
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • getCount

        int getCount()

        Returns the number of elements in a collection Read-only int.

      • remove

        void remove(ISequence item)

        Removes specified sequence from a collection.

        Parameters:
        item - Sequence to remove.
      • removeAt

        void removeAt(int index)

        Removes sequence at the specified index.

        Parameters:
        index - Index of a sequence that should be deleted.
      • clear

        void clear()

        Removes all sequences from a collection.

      • get_Item

        ISequence get_Item(int index)

        Returns a sequence at the specified index.

        Parameters:
        index - Index of element.
        Returns:
        The ISequence object.