Dockview
    Preparing search index...

    Interface IGridPanelView

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

    Hierarchy (View Summary)

    Index

    Properties

    element: HTMLElement
    id: string
    isActive: boolean
    isVisible: boolean
    maximumHeight: number
    maximumWidth: number
    minimumHeight: number
    minimumWidth: number
    onDidChange: DockviewEvent<IViewSize | undefined>
    priority?: LayoutPriority
    snap?: boolean

    Methods