Class ConnectionRoute
Represents a connection route of intermediate points, start and end connectors.
Inheritance
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class ConnectionRoute : Object
Constructors
ConnectionRoute()
ConnectionRoute(IEnumerable<Point>)
Initializes a new instance of the ConnectionRoute class.
Declaration
public ConnectionRoute(IEnumerable<Point> points)
Parameters
System.Collections.Generic.IEnumerable<System.Windows.Point>
points
The intermediate points. |
ConnectionRoute(IEnumerable<Point>, IConnector, IConnector)
Initializes a new instance of the ConnectionRoute class.
Declaration
public ConnectionRoute(IEnumerable<Point> points, IConnector startConnector, IConnector endConnector)
Parameters
System.Collections.Generic.IEnumerable<System.Windows.Point>
points
The intermediate points. |
IConnector
startConnector
The start connector. |
IConnector
endConnector
The end connector. |
Properties
EndConnector
Gets or sets the end connector.
Declaration
public IConnector EndConnector { get; set; }
Property Value
IConnector
|
Points
Gets or sets the intermediate points.
Declaration
public IList<Point> Points { get; }
Property Value
System.Collections.Generic.IList<System.Windows.Point>
|
StartConnector
Gets or sets the start connector.
Declaration
public IConnector StartConnector { get; set; }
Property Value
IConnector
The start connector. |