Dockview
    Preparing search index...

    Interface IAccessibilityHost

    interface IAccessibilityHost {
        activeGroup: DockviewGroupPanel | undefined;
        activePanel: IDockviewPanel | undefined;
        groups: DockviewGroupPanel[];
        onDidMutateLayout: DockviewEvent<DockviewLayoutMutationEvent>;
        onWillMutateLayout: DockviewEvent<DockviewLayoutMutationEvent>;
        options: DockviewComponentOptions;
        rootElement: HTMLElement;
        adjacentGroup(
            group: DockviewGroupPanel,
            reverse: boolean,
        ): DockviewGroupPanel | undefined;
        adjacentGroupInDirection(
            group: DockviewGroupPanel,
            direction: GroupNavigationDirection,
        ): DockviewGroupPanel | undefined;
        announce(message: string): void;
        dockPanel(
            panel: IDockviewPanel,
            group: DockviewGroupPanel,
            position: Position,
        ): void;
        showDropPreview(
            group: DockviewGroupPanel,
            position: Position,
        ): DockviewIDisposable;
    }

    Implemented by

    Index

    Properties

    activeGroup: DockviewGroupPanel | undefined
    activePanel: IDockviewPanel | undefined

    Fires before / after a structural layout change — used to restore focus on close.

    rootElement: HTMLElement

    The outermost dockview element (the shell, which also contains edge groups). A getter — it must resolve to the shell once that exists, not the inner gridview, or keydowns from edge groups are missed.

    Methods