New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
public class DockManagerDockEventArgs

Inheritance: objectDockManagerDockEventArgs

Constructors

C#
public DockManagerDockEventArgs()

Properties

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.

C#
public DockManagerDockPosition DockPosition { get; set; }

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

C#
public bool IsCancelled { get; set; }

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

C#
public string PaneId { get; set; }

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.

C#
public string TargetPaneId { get; set; }