Class
DockManagerDockEventArgs

The event arguments for the OnDock event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class DockManagerDockEventArgs

Inheritance: objectDockManagerDockEventArgs

Constructors

DockManagerDockEventArgs()

Declaration

cs-api-definition
public DockManagerDockEventArgs()

Properties

DockPosition

The position where the pane is being docked. The possible values are:

  1. Left. The pane is docked to the left side of the target pane.
  2. Top. The pane is docked to the top side of the target pane.
  3. Right. The pane is docked to the right side of the target pane.
  4. Bottom. The pane is docked to the bottom side of the target pane.
  5. Middle. The pane is docked to the middle of the target pane.

Declaration

cs-api-definition
public DockManagerDockPosition DockPosition { get; set; }

Property Value

DockManagerDockPosition

IsCancelled

Whether the event is cancelled and the built-in action prevented.

Declaration

cs-api-definition
public bool IsCancelled { get; set; }

Property Value

bool

PaneId

The Id of the pane floating pane that is being docked.

Declaration

cs-api-definition
public string PaneId { get; set; }

Property Value

string

TargetPaneId

The Id of the target pane.

Declaration

cs-api-definition
public string TargetPaneId { get; set; }

Property Value

string