Interface: InputBoxOptions
Options to configure the behavior of the input box UI.
Properties
ignoreFocusOut?
optionalignoreFocusOut:boolean
Set to true to keep the input box 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:918
markdownDescription?
optionalmarkdownDescription:string
A description of the field to be show (Markdown format)
Source
packages/extension-api/src/extension-api.d.ts:902
multiline?
optionalmultiline:boolean
Set to true when value represents a multi line content.
Source
packages/extension-api/src/extension-api.d.ts:923
password?
optionalpassword:boolean
Controls if a password input is shown. Password input hides the typed text.
Source
packages/extension-api/src/extension-api.d.ts:912
placeHolder?
optionalplaceHolder:string
An optional string to show as placeholder in the input box to guide the user what to type.
Source
packages/extension-api/src/extension-api.d.ts:907
prompt?
optionalprompt:string
The text to display underneath the input box.
Source
packages/extension-api/src/extension-api.d.ts:897
title?
optionaltitle:string
An optional string that represents the title of the input box.
Source
packages/extension-api/src/extension-api.d.ts:879
value?
optionalvalue:string
The value to pre-fill in the input box.
Source
packages/extension-api/src/extension-api.d.ts:884
valueSelection?
optionalvalueSelection: [number,number]
Selection of the pre-filled value. Defined as tuple of two number where the
first is the inclusive start index and the second the exclusive end index. When undefined the whole
pre-filled value will be selected, when empty (start equals end) only the cursor will be set,
otherwise the defined range will be selected.
Source
packages/extension-api/src/extension-api.d.ts:892
Methods
validateInput()?
optionalvalidateInput(value):undefined|null|string|InputBoxValidationMessage|Promise<undefined|null|string|InputBoxValidationMessage>
An optional function that will be called to validate input and to give a hint to the user.
Parameters
• value: string
The current value of the input box.
Returns
undefined | null | string | InputBoxValidationMessage | Promise<undefined | null | string | InputBoxValidationMessage>
Either a human-readable string which is presented as an error message or an InputBoxValidationMessage
which can provide a specific message severity. Return undefined, null, or the empty string when 'value' is valid.