java.lang.ObjectCollection
com.aspose.diagram.TabCollection
public class TabCollection
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | → inherited from Collection
|
| Gets the number of elements actually contained in the collection. | ||
int | getDel() | |
void | setDel(int) | |
| 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(int) | |
| The zero-based index of the element within its parent element. | ||
Tab | get(int) | |
| Gets the element at the specified index. | ||
| Method Summary | ||
|---|---|---|
int | add(Tab item) | |
| Add the Tab object in the collection. | ||
void | clear() | → inherited from Collection
|
| Removes all elements from collection. | ||
boolean | isExist(int index) | → inherited from Collection
|
| Is exist item in the collection. | ||
java.util.Iterator | iterator() | → inherited from Collection
|
| Supports a simple iteration over a nongeneric collection. | ||
void | remove(Tab item) | |
| Remove the Tab object from the collection. | ||
| Property Getters/Setters Detail |
|---|
getDel/setDel | |
public int getDel() / public void setDel(int value) | |
getIX/setIX | |
public int getIX() / public void setIX(int value) | |
getCount | → inherited from Collection
|
public int getCount() | |
get | |
public Tab get(int index) | |
index - | Method Detail |
|---|
add | |
public int add(Tab item) | |
item - remove | |
public void remove(Tab item) | |
item - iterator | → inherited from Collection
|
public java.util.Iterator iterator() | |
isExist | → inherited from Collection
|
public boolean isExist(int index) | |
index - index of element.clear | → inherited from Collection
|
public void clear() | |