Class
DiagramConnectionDragDescriptor

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

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class DiagramConnectionDragDescriptor

Inheritance: objectDiagramConnectionDragDescriptor

Constructors

DiagramConnectionDragDescriptor()

Declaration

cs-api-definition
public DiagramConnectionDragDescriptor()

Properties

FromId

The unique identifier of the source shape.

Declaration

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

Property Value

string

FromX

The X coordinate of the connection source point.

Declaration

cs-api-definition
public double? FromX { get; set; }

Property Value

double?

FromY

The Y coordinate of the connection source point.

Declaration

cs-api-definition
public double? FromY { get; set; }

Property Value

double?

ToId

The unique identifier of the target shape.

Declaration

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

Property Value

string

ToX

The X coordinate of the connection target point.

Declaration

cs-api-definition
public double? ToX { get; set; }

Property Value

double?

ToY

The Y coordinate of the connection target point.

Declaration

cs-api-definition
public double? ToY { get; set; }

Property Value

double?