public class ControlCollection
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
Control | get(int index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
int | add(Control item) | |
Add the Control object in the collection.
|
||
void | clear() | |
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) | |
Is exist item in the collection.
|
||
java.util.Iterator | iterator() | |
Supports a simple iteration over a nongeneric collection.
|
||
void | remove(Control item) | |
Remove the Control object from the collection.
|
public int getCount()
public Control get(int index)
index
- public int add(Control item)
public void remove(Control item)
public Control getControl(int IX)
IX
- public Control getControlFromId(int ID)
ID
- public Control getControlFromName(java.lang.String name)
name
- public java.util.Iterator iterator()
public boolean isExist(int index)
index
- index of element.public void clear()