java.lang.ObjectCollection
com.aspose.diagram.ControlCollection
public class ControlCollection
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | → inherited from Collection
|
| Gets the number of elements actually contained in the collection. | ||
Control | get(int) | |
| Gets the element at the specified index. | ||
| Method Summary | ||
|---|---|---|
int | add(Control item) | |
| Add the Control object in the collection. | ||
void | clear() | → inherited from Collection
|
| Removes all elements from collection. | ||
Control | getControl(int IX) | |
| Gets the element at the specified index IX. | ||
Control | getControlFromId(int ID) | |
| Gets the element at the specified ID. | ||
Control | getControlFromName(java.lang.String name) | |
| Gets the element at the specified name. | ||
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(Control item) | |
| Remove the Control object from the collection. | ||
| Property Getters/Setters Detail |
|---|
getCount | → inherited from Collection
|
public int getCount() | |
get | |
public Control get(int index) | |
index - | Method Detail |
|---|
add | |
public int add(Control item) | |
remove | |
public void remove(Control item) | |
getControl | |
public Control getControl(int IX) | |
IX - getControlFromId | |
public Control getControlFromId(int ID) | |
ID - getControlFromName | |
public Control getControlFromName(java.lang.String name) | |
name - 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() | |