Search
DiagramNode.CreateConnectionPoint Method
See Also
 





Creates a connection point between this node and the specified link at the specified point.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public virtual ConnectionPoint CreateConnectionPoint (
    DiagramLink link,
    PointF pt,
    bool incoming
)

Visual Basic  Copy Code

Public Overridable Function CreateConnectionPoint( _
    link As DiagramLink, _
    pt As PointF, _
    incoming As Boolean _
) As ConnectionPoint

 Parameters

link
A DiagramLink that should be connected to this node.
pt
The point at which the link should be connected.
incoming
true if link is an incoming link, otherwise, false.

 Return Value

A ConnectionPoint instance representing the connection.

 See Also