com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface ITabCollection

  • All Superinterfaces:
    com.aspose.ms.System.Collections.ICollection<ITab>, com.aspose.ms.System.Collections.IEnumerable<ITab>, IGenericCollection<ITab>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<ITab>, java.lang.Iterable<ITab>
    All Known Implementing Classes:
    TabCollection


    public interface ITabCollection
    extends IGenericCollection<ITab>

    Represents a collection of tabs.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      ITab add(double position, int align)
      Adds a Tab to the collection.
      int add(ITab value)
      Adds a Tab to the collection.
      void clear()
      Removes all elements from the collection.
      ITab get_Item(int index)
      Gets the element at the specified index.
      void removeAt(int index)
      Removes the element at the specified index of the collection.
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable

        iterator
      • Methods inherited from interface com.aspose.ms.System.Collections.ICollection

        copyTo, getSyncRoot, isSynchronized, size
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • get_Item

        ITab get_Item(int index)

        Gets the element at the specified index. Read-only ITab.

      • add

        ITab add(double position,
                 int align)

        Adds a Tab to the collection.

        Parameters:
        position - Tab position.
        align - Tab alignment.
        Returns:
        Added tab.
      • add

        int add(ITab value)

        Adds a Tab to the collection.

        Parameters:
        value - The Tab object to be added at the end of the collection.
        Returns:
        The index at which the tab was added.
      • clear

        void clear()

        Removes all elements from the collection.

      • removeAt

        void removeAt(int index)

        Removes the element at the specified index of the collection.

        Parameters:
        index - The zero-based index of the element to remove.