Interface DockviewGroupMoveParams

interface DockviewGroupMoveParams {
    group?: DockviewGroupPanel;
    index?: number;
    position?: "center" | "left" | "top" | "right" | "bottom";
    skipSetActive?: boolean;
}

Properties

index?: number

The index to place the panel within a group, only applicable if the placement is within an existing group

position?: "center" | "left" | "top" | "right" | "bottom"
skipSetActive?: boolean

Whether to skip setting the group as active after moving

Generated using TypeDoc