Dockview
    Preparing search index...

    Interface PaneviewDidDropEvent

    interface PaneviewDidDropEvent {
        api: PaneviewApi;
        edge?: boolean;
        getData: () => PaneTransfer | undefined;
        nativeEvent: DragEvent | PointerEvent;
        panel: IPaneviewPanel;
        position: Position;
    }

    Hierarchy

    • DroptargetEvent
      • PaneviewDidDropEvent
    Index

    Properties

    edge?: boolean

    The resolved cell was marked edge by a PositionResolver: an "outer" cell that should dock against the whole layout, not this target. The target renders no overlay for it; the consumer routes the commit.

    getData: () => PaneTransfer | undefined
    nativeEvent: DragEvent | PointerEvent

    Narrow with instanceof DragEvent before reading dataTransfer.

    position: Position