Interface WebviewPanelShowOptions

Settings to determine where webview panel will be reside

interface WebviewPanelShowOptions {
    area?: WebviewPanelTargetArea;
    preserveFocus?: boolean;
    viewColumn?: number;
}

Properties

Target area where webview panel will be resided. Shows in the 'WebviewPanelTargetArea.Main' area if undefined.

preserveFocus?: boolean

When true, the webview will not take focus.

viewColumn?: number

Editor View column to show the panel in. Shows in the current viewColumn if undefined.