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