Defines the possible positions where a pane can be docked relative to a target pane. Used during drag-and-drop operations to specify the layout arrangement of docked panes.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public enum DockManagerDockPosition
Fields
Docks the pane below the target, creating a vertical split with the new pane at the bottom.
C#
Bottom = 3
Docks the pane to the left side of the target, creating a horizontal split with the new pane on the left.
C#
Left = 0
Docks the pane into the target's tab group, adding it as a new tab alongside existing content panes.
C#
Middle = 4
Docks the pane to the right side of the target, creating a horizontal split with the new pane on the right.
C#
Right = 2
Docks the pane above the target, creating a vertical split with the new pane on top.
C#
Top = 1