Onetastic Macro Documentation >
>
DialogBox DialogBox Object
Description
Represents a dialog box to interact with the user.
Remarks
Represents a dialog box to display a message or request input from user. Dialog boxes can be created with DialogBox_Create and displayed with DialogBox_Show. Controls can be added to dialog boxes with DialogBox_AddTextBox, DialogBox_AddLabel, DialogBox_AddCheckBox, DialogBox_AddDropDown, DialogBox_AddComboBox, and DialogBox_AddColorPicker functions. Dialog box objects have a member named "controls" to access the user input after they are displayed.
Properties
Name |
Type |
Access |
Description |
controls |
Array<Mixed> |
read-only |
The values provided by the user for the controls on the dialog box after the dialog is displayed with DialogBox_Show function. The value for checkboxes are Bool while the values for textboxes and drop down list boxes are Strings. |
type |
ObjectType |
read-only |
Type of this object. Always has the value of "DialogBox". |
|