bdeGetSelectorDialogSelectedPaths

Returns the selected options in the selectorDialog.

Syntax

paths = bdeGetSelectorDialogSelectedPaths(selectorDialog)

Inputs

selectorDialog
The selector dialog to get the selected paths of.
Type: hwscpSelectorDialog

Outputs

selectorDialogPaths
The selected options from the selector dialog.
Type: integer

Examples

Get the selected options in a selector dialog:

          selectorDialog = bdeCreateSelectorDialog({'Option1', 'Option2', 'Option3'});
          paths = bdeGetSelectorDialogSelectedPaths(selectorDialog);
        

          
            paths = {
            [1,1] Option2
            [2,1] Option3
            }