Dockview
    Preparing search index...

    Interface DockviewActivePanelChangeEvent

    Fired by onDidActivePanelChange when the active panel changes. Carries the DockviewOrigin so consumers can distinguish a user clicking a tab from a programmatic setActive call (e.g. to avoid feedback loops when syncing context off the active panel).

    interface DockviewActivePanelChangeEvent {
        origin: DockviewOrigin;
        panel: IDockviewPanel | undefined;
    }
    Index

    Properties

    Properties

    panel: IDockviewPanel | undefined