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

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

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.WinControls.RadDiagram.dll

Syntax:

C#
public class ConnectionRoute

Inheritance: objectConnectionRoute

Constructors

Initializes a new instance of the ConnectionRoute class.

C#
public ConnectionRoute()

Initializes a new instance of the ConnectionRoute class.

C#
public ConnectionRoute(IEnumerable<Point> points, IConnector startConnector, IConnector endConnector)
Parameters:pointsIEnumerable<Point>

The intermediate points.

startConnectorIConnector

The start connector.

endConnectorIConnector

The end connector.

Initializes a new instance of the ConnectionRoute class.

C#
public ConnectionRoute(IEnumerable<Point> points)
Parameters:pointsIEnumerable<Point>

The intermediate points.

Properties

Gets or sets the end connector.

C#
public IConnector EndConnector { get; set; }

Gets or sets the intermediate points.

C#
public IList<Point> Points { get; }

Gets or sets the start connector.

C#
public IConnector StartConnector { get; set; }
Property Value:

The start connector.