Onetastic Macro Documentation >
>
>
DialogBox_AddCheckBox DialogBox_AddCheckBox
Adds a checkbox to a dialog box.
Syntax
void DialogBox_AddCheckBox(
DialogBox dialogBox,
String label,
String name,
Bool initialValue)
Parameters
- DialogBox dialogBox
- The dialog box to add the checkbox to.
- String label
- A label for the checkbox.
- String name
- Name of the checkbox. The value of the checkbox will be stored dialogBox.controls[name] after the dialog is displayed using DialogBox_Show function.
- Bool initialValue
- The initial value of the checkbox.
|