
Contents |
Open a dialog with check boxes and return each check box's selected status when the dialog is closed.
Minimum Origin Version Required: 8.5 SR0
Dataset vnStat;
dlgChkList inames:="Descriptive Statistics|Normality Test" osel:=vnStat;
| Display Name | Variable Name | I/O and Type | Default Value | Description |
|---|---|---|---|---|
| Check Names | inames |
Input string | | Specify the check box names in the opened dialog, which are separated by '|'. |
| Dialog Title | title |
Input string | | Set the title for the opened dialog. |
| Description | desc |
Input string | | Set the description for the opened dialog, which is shown at the top of the dialog. |
| Choices | ochks |
Output vector | | A vector indicating each check box's status.
|
| Selected Indices | osel |
Output vector | | A vector of selected check boxes' indices. The index is 1-offset. |
| Selected as a comma separated string | olist |
Output string | | A string of selected check boxes' indices separated by commas. The index is 1-offset. |
This X-Function opens a dialog with check boxes whose names can be specified and returns each check box's selected status when the dialog is closed. It can be used to provide interactive options in Labtalk script.