public class TabCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
int | getDel() | |
void | setDel(intvalue) | |
A flag indicating whether the element has been deleted locally. A value of 1 indicates that the element was deleted locally. The value of the property is BOOL integer constant. | ||
int | getIX() | |
void | setIX(intvalue) | |
The zero-based index of the element within its parent element. | ||
Tab | get(int index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
int | add(Tab item) | |
Add the Tab object in the collection.
|
||
void | clear() | |
Removes all elements from collection.
|
||
boolean | isExist(int index) | |
Is exist item in the collection.
|
||
java.util.Iterator | iterator() | |
Supports a simple iteration over a nongeneric collection.
|
||
void | remove(Tab item) | |
Remove the Tab object from the collection.
|
public int getDel() / public void setDel(int value)
public int getIX() / public void setIX(int value)
public int getCount()
public Tab get(int index)
index
- public int add(Tab item)
item
- public void remove(Tab item)
item
- public java.util.Iterator iterator()
public boolean isExist(int index)
index
- index of element.public void clear()