Interface IGridPanelComponentView

interface IGridPanelComponentView {
    element: HTMLElement;
    id: string;
    init: ((params) => void);
    isActive: boolean;
    isVisible: boolean;
    maximumHeight: number;
    maximumWidth: number;
    minimumHeight: number;
    minimumWidth: number;
    onDidChange: DockviewEvent<undefined | IViewSize>;
    priority?: Low | High | Normal;
    snap?: boolean;
    dispose(): void;
    focus(): void;
    fromJSON?(json): void;
    layout(width, height): void;
    setActive(isActive): void;
    setVisible?(visible): void;
    toJSON(): object;
    update(event): void;
}

Hierarchy (view full)

Implemented by

Properties

element: HTMLElement
id: string
init: ((params) => void)

Type declaration

isActive: boolean
isVisible: boolean
maximumHeight: number
maximumWidth: number
minimumHeight: number
minimumWidth: number
onDidChange: DockviewEvent<undefined | IViewSize>
priority?: Low | High | Normal
snap?: boolean

Methods

Generated using TypeDoc