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

Provides data for the OnUnpin event when a user unpins a pane to auto-hide it at the dock edge. Contains information about the pane being unpinned and allows cancellation of the unpin operation.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DockManagerUnpinEventArgs

Inheritance: objectDockManagerUnpinEventArgs

Constructors

C#
public DockManagerUnpinEventArgs()

Properties

Gets or sets a value indicating whether the unpin operation should be cancelled. Set to true to prevent the pane from being unpinned and maintain its current pinned state in the dock layout.

C#
public bool IsCancelled { get; set; }

Gets or sets the unique identifier of the pane being unpinned to auto-hide state.

C#
public string PaneId { get; set; }