BBjWindow::addInputT
Description
In BBj 24.00 and higher, this method creates a time input control on the BBjWindow.
Syntax
Return Value |
Method |
---|---|
BBjInputT |
addInputT() |
BBjInputT |
addInputT(int ID) |
BBjInputT |
addInputT(int ID, number x, number y, number w, number h, string flags) |
BBjInputT |
addInputT(int ID, number x, number y, number w, number h, string flags, string mask) |
BBjInputT |
addInputT(int ID, number x, number y, number w, number h, string flags, string mask, string rules) |
BBjInputT |
addInputT(int ID, number x, number y, number w, number h, string flags, string mask, string rules, number restore) |
BBjInputT |
addInputT(int ID, number x, number y, number w, number h, string flags, string mask, string rules, number restore, number value) |
BBjInputT |
addInputT(int ID, String flags) |
BBjInputT |
addInputT(int ID, String flags, String mask) |
BBjInputT |
addInputT(int ID, String flags, String mask, string rules) |
BBjInputT |
addInputT(int ID, String flags, String mask, string rules, number restore, number value) |
BBjInputT |
addInputT(String flags) |
BBjInputT |
addInputT(String flags, String mask) |
BBjInputT |
addInputT(String flags, String mask, string rules) |
BBjInputT |
addInputT(String flags, String mask, string rules, number restore, number value) |
Parameters
Parameter | Description | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
id |
INPUTT control ID. |
||||||||||||||||||||||
x |
Horizontal position of the upper-left corner of the INPUTT control. |
||||||||||||||||||||||
y |
Vertical position of the upper-left corner of the INPUTT control. |
||||||||||||||||||||||
w |
Width of the INPUTT control. |
||||||||||||||||||||||
h |
Height of the INPUTT control. To create a standard size control, set the h parameter to 0. |
||||||||||||||||||||||
flags |
Control flags, as follows:
|
||||||||||||||||||||||
mask | Output mask. If omitted or specified as "", the current default time mask from STBL("!TIME") is used. | ||||||||||||||||||||||
rules |
Input rules. If specified as "", the value in STBL("!IRULES") is used.
|
||||||||||||||||||||||
restore |
Restore value, specified as a number as defined by the BBx TIM variable, or -1 for blank. |
||||||||||||||||||||||
val |
Initial value, specified as a number as defined by the BBx TIM variable, or -1 for blank. |
Return Value
This method returns the created BBjInputT object.
Remarks
If the ID parameter is not specified, a control ID is assigned dynamically using getAvailableControlID().
If the x, y, width, and height parameters are not specified, they are all initialized to 0. This is typically for use with DWC windows that dynamically arrange their contents (window creation flag $00100000$).
Example
|
Version History
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.