com.aspose.slides.pptx
Class TabsEx

java.lang.Object
  extended by com.aspose.slides.pptx.TabsEx

public final class TabsEx
extends java.lang.Object

Represents a collection of tabs.


Constructor Summary
TabsEx()
           
 
Method Summary
 int add(TabEx value)
          Adds a TabEx to the collection.
 void clear()
          Removes all elements from the collection.
 void copyDataFrom(TabsEx tabs)
           
 boolean equals(java.lang.Object obj)
          Determines whether two TabsEx instances are equal.
 TabEx get(int index)
          Gets the element at the specified index.
 java.util.Iterator<TabEx> iterator()
          Returns an iterator for the entire collection.
 void remove(int index)
          Removes the element at the specified index of the collection.
 int size()
          Gets the number of elements actually contained in the collection.
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TabsEx

public TabsEx()
Method Detail

size

public int size()
Gets the number of elements actually contained in the collection.


get

public TabEx get(int index)
Gets the element at the specified index.

Parameters:
index - index of the element to return.
Returns:
See TabEx.

add

public int add(TabEx value)
Adds a TabEx to the collection.

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

copyDataFrom

public void copyDataFrom(TabsEx tabs)

clear

public void clear()
Removes all elements from the collection.


remove

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

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

equals

public boolean equals(java.lang.Object obj)
Determines whether two TabsEx instances are equal.

Overrides:
equals in class java.lang.Object
Parameters:
obj - The TabsEx to compare with the current TabsEx.
Returns:
true if the specified TabsEx is equal to the current TabsEx.

iterator

public java.util.Iterator<TabEx> iterator()
Returns an iterator for the entire collection.