Interface: QuickPickOptions
Options to configure the behavior of the quick pick UI.
Properties
canPickMany?
optionalcanPickMany:boolean
An optional flag to make the picker accept multiple selections, if true the result is an array of picks.
Source
packages/extension-api/src/extension-api.d.ts:1115
ignoreFocusOut?
optionalignoreFocusOut:boolean
Set to true to keep the picker open when focus moves to another part of the editor or to another window.
This setting is ignored on iPad and is always false.
Source
packages/extension-api/src/extension-api.d.ts:1110
matchOnDescription?
optionalmatchOnDescription:boolean
An optional flag to include the description when filtering the picks.
Source
packages/extension-api/src/extension-api.d.ts:1094
matchOnDetail?
optionalmatchOnDetail:boolean
An optional flag to include the detail when filtering the picks.
Source
packages/extension-api/src/extension-api.d.ts:1099
placeHolder?
optionalplaceHolder:string
An optional string to show as placeholder in the input box to guide the user what to pick on.
Source
packages/extension-api/src/extension-api.d.ts:1104
title?
optionaltitle:string
An optional string that represents the title of the quick pick.
Source
packages/extension-api/src/extension-api.d.ts:1089
Methods
onDidSelectItem()?
optionalonDidSelectItem(item):any
An optional function that is invoked whenever an item is selected.
Parameters
• item: string | QuickPickItem
Returns
any