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

The event arguments for the Diagram connection drag end event. Contains information about the connections that were dragged.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DiagramConnectionDragEndEventArgs

Inheritance: objectDiagramConnectionDragEndEventArgs

Constructors

C#
public DiagramConnectionDragEndEventArgs()

Properties

The connection handle that was dragged, if applicable. Contains the handle name (e.g., "source" or "target") when a connection endpoint was dragged.

C#
public string ConnectionHandle { get; set; }

The connections that were dragged.

C#
public List<DiagramConnectionDragDescriptor> Connections { get; set; }