Interface QuickPickOptions

Options for configuration behavior of the quick pick

interface QuickPickOptions {
    canPickMany?: boolean;
    ignoreFocusOut?: boolean;
    matchOnDescription?: boolean;
    matchOnDetail?: boolean;
    placeHolder?: string;
    title?: string;
    onDidSelectItem?(item): any;
}

Properties

canPickMany?: boolean

If true make picker accept multiple selections. Not implemented yet

ignoreFocusOut?: boolean

If true prevent picker closing when it's loses focus

matchOnDescription?: boolean

A flag to include the description when filtering

matchOnDetail?: boolean

A flag to include the detail when filtering

placeHolder?: string

The place holder in input box

title?: string

An optional string that represents the title of the quick pick.

Methods