Onetastic Macro Documentation >
>
>
DialogBox_SetControlVisible DialogBox_SetControlVisible
Hides or shows 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_SetControlVisible(
DialogBox dialogBox,
String controlName,
Bool visible)
Parameters
- DialogBox dialogBox
- The dialog box that contains the control to hide or show.
- String controlName
- The name of the control to hide or show.
- Bool visible
- Whether to hide or to show the control.
|