Onetastic Macro Documentation >
>
>
DialogBox_SetControlEnabled DialogBox_SetControlEnabled
Enables or disables a control in a dialog box. This function can be called prior to displaying a dialog box via DialogBox_Show or during a dialog box event handler set by DialogBox_SetEventHandler.
Syntax
void DialogBox_SetControlEnabled(
DialogBox dialogBox,
String controlName,
Bool enabled)
Parameters
- DialogBox dialogBox
- The dialog box that contains the control to enable or disable.
- String controlName
- The name of the control to enable or disable.
- Bool enabled
- Whether to enable or to disable the control.
|