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

Provides data for the OnPin event when a user pins an unpinned pane back to the dock layout. Contains information about the pane being pinned and allows cancellation of the pin operation.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DockManagerPinEventArgs

Inheritance: objectDockManagerPinEventArgs

Constructors

C#
public DockManagerPinEventArgs()

Properties

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

C#
public bool IsCancelled { get; set; }

Gets or sets the unique identifier of the pane being pinned to the dock layout.

C#
public string PaneId { get; set; }