Dockview
    Preparing search index...

    Interface IDockviewGroupPanel

    interface IDockviewGroupPanel {
        activePanel: IDockviewPanel | undefined;
        api: DockviewGroupPanelApi;
        height: number;
        id: string;
        locked: DockviewGroupPanelLocked;
        maximumHeight: number;
        maximumWidth: number;
        minimumHeight: number;
        minimumWidth: number;
        model: IDockviewGroupPanelModel;
        panels: IDockviewPanel[];
        params: Parameters | undefined;
        priority: LayoutPriority | undefined;
        size: number;
        snap: boolean;
        width: number;
        focus(): void;
        toJSON(): object;
        update(event: PanelUpdateEvent): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    activePanel: IDockviewPanel | undefined
    height: number
    id: string
    locked: DockviewGroupPanelLocked
    maximumHeight: number
    maximumWidth: number
    minimumHeight: number
    minimumWidth: number
    model: IDockviewGroupPanelModel
    panels: IDockviewPanel[]
    params: Parameters | undefined
    priority: LayoutPriority | undefined
    size: number
    snap: boolean
    width: number

    Methods