com.aspose.slides
Class Tabs

java.lang.Object
  extended by com.aspose.slides.Tabs

public final class Tabs
extends java.lang.Object

Represents the collection of a tabulations.


Method Summary
 int add(Tab value)
          Adds the tab to a collection.
 void clear()
          Removes all tabs from a collection.
 Tab get(int index)
          Returns the element at the specified index.
 void remove(int index)
          Removes the tab at the specified index of a collection.
 int size()
          Returns the number of the elements in a collection.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

size

public int size()
Returns the number of the elements in a collection.

Returns:
The number of the elements in a collection.

get

public Tab get(int index)
Returns the element at the specified index.

Parameters:
index - index of element to return.
Returns:
The element at the specified index.

add

public int add(Tab value)
        throws PptEditException
Adds the tab to a collection.

Parameters:
value - the tab to be added to a collection.
Returns:
The index at which the tab has been added.
Throws:
PptEditException

clear

public void clear()
Removes all tabs from a collection.


remove

public void remove(int index)
Removes the tab at the specified index of a collection.

Parameters:
index - the zero-based index of the tab to remove.