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

Provides data for the DockManager pane undocking events. Contains information about the pane being undocked and allows canceling the operation.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DockManagerUndockEventArgs

Inheritance: objectDockManagerUndockEventArgs

Constructors

C#
public DockManagerUndockEventArgs()

Properties

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

C#
public bool IsCancelled { get; set; }

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

C#
public string PaneId { get; set; }