|
Onetastic Macro Documentation >
>
>
DialogBox_SetControlOptions DialogBox_SetControlOptions
Sets the possible options of a combo box, drop down list box, or radio group control in a dialog box. For radio groups, the number of options must remain the same. 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_SetControlOptions(
DialogBox dialogBox,
String controlName,
Array options)
Parameters
- DialogBox dialogBox
- The dialog box that contains the control to update.
- String controlName
- The name of the control to update.
- Array options
- An array of strings specifying the new options for the control.
|