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
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; }