Son, you're gonna drive me to drinkin'...
If you don't stop drivin' that Hot... Rod... Lincoln.
- Charlie Ryan
aztec.ui.Control
public abstract class Control from<Window>
Base
Window
Control
Control is an abstract class which is a base framework for all UI Controls. UI Controls are used to allow the user to interact with the script. Classes such as Button, Edit, Text, ComboBox and Canvas (for drawing) are examples of UI controls. A control can have the Frame, Dialog, ChildFrame or SplitterPane class as a parent. In addition, some controls can be a parent to other controls (such as GroupBox).
The Control class currently doesn't provide any useful public methods (besides those offered in the 'Window' class), but it serves as a convenient base class for all UI controls.
Control Methods
Derived Classes
Text, Edit, Editor, Button, Canvas, ComboBox, GroupBox, ProgressBar, ListMaster, TreeMaster
See Also
Class Hierarchy, Frame, ChildFrame, Dialog, SplitterPane
Control()
public method Control(Window Parent, int XPos, int YPos, int Width, int Height)
Parameters
Parent
Parent window for the control
XPos
One based X position of control relative to parent
YPos
One based Y position of control relative to parent
Width
Initial width of the control in pixels
Height
Initial height of the control in pixels
Return Value
None
Description
Constructor for the Control class.
Control Class