Class
DockManagerDockEventArgs

Provides data for the DockManager pane docking events. Contains information about the pane being docked, target location, and allows canceling the operation.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class DockManagerDockEventArgs

Inheritance: objectDockManagerDockEventArgs

Constructors

DockManagerDockEventArgs()

Declaration

cs-api-definition
public DockManagerDockEventArgs()

Properties

DockPosition

Specifies the position relative to the target pane where docking will occur. Left, Right, Top, and Bottom create adjacent splits. Middle adds to the target's tab group.

Declaration

cs-api-definition
public DockManagerDockPosition DockPosition { get; set; }

Property Value

DockManagerDockPosition

IsCancelled

Gets or sets whether the docking operation should be canceled. When true, prevents the pane from being docked and maintains its current floating state.

Declaration

cs-api-definition
public bool IsCancelled { get; set; }

Property Value

bool

PaneId

Gets or sets the unique identifier of the floating pane being docked. References the pane that is transitioning from floating to docked state.

Declaration

cs-api-definition
public string PaneId { get; set; }

Property Value

string

TargetPaneId

Gets or sets the unique identifier of the pane that will receive the docked pane. Specifies where the floating pane will be attached in the layout hierarchy.

Declaration

cs-api-definition
public string TargetPaneId { get; set; }

Property Value

string