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

Contains identifying information for a connection involved in a drag operation.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DiagramConnectionDragDescriptor

Inheritance: objectDiagramConnectionDragDescriptor

Constructors

C#
public DiagramConnectionDragDescriptor()

Properties

The unique identifier of the source shape.

C#
public string FromId { get; set; }

The X coordinate of the connection source point.

C#
public double? FromX { get; set; }

The Y coordinate of the connection source point.

C#
public double? FromY { get; set; }

The unique identifier of the target shape.

C#
public string ToId { get; set; }

The X coordinate of the connection target point.

C#
public double? ToX { get; set; }

The Y coordinate of the connection target point.

C#
public double? ToY { get; set; }