Class
ConnectionRoute

Represents a connection route of intermediate points, start and end connectors.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

cs-api-definition
public class ConnectionRoute

Inheritance: objectConnectionRoute

Constructors

ConnectionRoute()

Initializes a new instance of the ConnectionRoute class.

Declaration

cs-api-definition
public ConnectionRoute()

ConnectionRoute(IEnumerable<Point>)

Initializes a new instance of the ConnectionRoute class.

Declaration

cs-api-definition
public ConnectionRoute(IEnumerable<Point> points)

Parameters

points

IEnumerable<Point>

The intermediate points.

ConnectionRoute(IEnumerable<Point>, IConnector, IConnector)

Initializes a new instance of the ConnectionRoute class.

Declaration

cs-api-definition
public ConnectionRoute(IEnumerable<Point> points, IConnector startConnector, IConnector endConnector)

Parameters

points

IEnumerable<Point>

The intermediate points.

startConnector

IConnector

The start connector.

endConnector

IConnector

The end connector.

Properties

EndConnector

Gets or sets the end connector.

Declaration

cs-api-definition
public IConnector EndConnector { get; set; }

Property Value

IConnector

Points

Gets or sets the intermediate points.

Declaration

cs-api-definition
public IList<Point> Points { get; }

Property Value

IList<Point>

StartConnector

Gets or sets the start connector.

Declaration

cs-api-definition
public IConnector StartConnector { get; set; }

Property Value

IConnector

The start connector.