QuickPickOptions

Options to configure the behavior of the quick pick UI.

Online Documentation

Properties

Link copied to clipboard
abstract var canPickMany: Boolean?

An optional flag to make the picker accept multiple selections, if true the result is an array of picks.

Link copied to clipboard
abstract var ignoreFocusOut: 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.

Link copied to clipboard

An optional flag to include the description when filtering the picks.

Link copied to clipboard
abstract var matchOnDetail: Boolean?

An optional flag to include the detail when filtering the picks.

Link copied to clipboard
abstract var onDidSelectItem: (item: JsAny) -> JsAny??

An optional function that is invoked whenever an item is selected.

Link copied to clipboard
abstract var placeHolder: String?

An optional string to show as placeholder in the input box to guide the user what to pick on.

Link copied to clipboard
abstract var title: String?

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