Interface IControlCollection
- All Superinterfaces:
Iterable<IControl>
Common members of form control collections
-
Method Summary
addButton(double left,
double top,
double width,
double height)
addCheckBox(double left,
double top,
double width,
double height)
addDropDown(double left,
double top,
double width,
double height)
addGroupBox(double left,
double top,
double width,
double height)
addLabel(double left,
double top,
double width,
double height)
addListBox(double left,
double top,
double width,
double height)
Adds a new IOptionButton
.
addScrollBar(double left,
double top,
double width,
double height)
addSpinner(double left,
double top,
double width,
double height)
void
Removes all controls from a IControlCollection
.
int
Gets the count of controls.
int
-
Method Details
-
getCount
int getCount()
Gets the count of controls.
-
get
Gets control by index.
-
get
Gets control by name.
-
-
addDropDown
IDropDown addDropDown(double left,
double top,
double width,
double height)
Adds a new IDropDown
.
-
addCheckBox
ICheckBox addCheckBox(double left,
double top,
double width,
double height)
Adds a new ICheckBox
.
-
addSpinner
ISpinner addSpinner(double left,
double top,
double width,
double height)
Adds a new ISpinner
.
-
addListBox
IListBox addListBox(double left,
double top,
double width,
double height)
Adds a new IListBox
.
-
-
addGroupBox
IGroupBox addGroupBox(double left,
double top,
double width,
double height)
Adds a new IGroupBox
.
-
addLabel
ILabel addLabel(double left,
double top,
double width,
double height)
Adds a new ILabel
.
-
-
-
clear
void clear()
Removes all controls from a IControlCollection
.