Skip to main content
A newer version of this page is available. .

DiagramConnector(ConnectorType, PointFloat, PointFloat, PointFloat[]) Constructor

Initializes a new instance of the DiagramConnector class with the specified settings.

Namespace: DevExpress.XtraDiagram

Assembly: DevExpress.XtraDiagram.v19.1.dll

Declaration

public DiagramConnector(
    ConnectorType connectorType,
    PointFloat beginPoint,
    PointFloat endPoint,
    params PointFloat[] points
)

Parameters

Name Type Description
connectorType ConnectorType

The connector type. This value is used to initialize the DiagramConnector.Type property.

beginPoint PointFloat

The connector’s starting point. This value is used to initialize the DiagramConnector.BeginPoint property.

endPoint PointFloat

The connector’s ending point. This value is used to initialize the DiagramConnector.EndPoint property.

points PointFloat[]

A collection of turn points. This object is used to initialize the DiagramConnector.Points property.

See Also