Interface OpenViewArguments

Options for adding a widget to the application shell.

interface OpenViewArguments {
    activate?: boolean;
    area?: Area;
    mode?: InsertMode | OpenToSideMode | "tab-replace";
    rank?: number;
    ref?: Widget;
    reveal?: boolean;
    toggle?: boolean;
}

Hierarchy (view full)

Properties

activate?: boolean
area?: Area

The area of the application shell where the widget will reside.

mode?: InsertMode | OpenToSideMode | "tab-replace"

The insertion mode for adding the widget.

The default is 'tab-after'.

rank?: number

The rank order of the widget among its siblings.

ref?: Widget

The reference widget for the insert location.

The default is undefined.

reveal?: boolean
toggle?: boolean