public interface ITabCollection extends IGenericCollection<ITab>
Represents a collection of tabs.
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.
|
iterator
ITab add(double position, int align)
Adds a Tab to the collection.
position
- Tab position.align
- Tab alignment.int add(ITab value)
Adds a Tab to the collection.
value
- The Tab object to be added at the end of the collection.void clear()
Removes all elements from the collection.
void removeAt(int index)
Removes the element at the specified index of the collection.
index
- The zero-based index of the element to remove.