Search
DiagramLink Constructor (DiagramLink, DiagramNode, DiagramNode)
See Also
 





Initializes a new instance of the DiagramLink class between the specified nodes using the specified diagram link as a prototype.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DiagramLink (
    DiagramLink prototype,
    DiagramNode src,
    DiagramNode dest
)

Visual Basic  Copy Code

Public New ( _
    prototype As DiagramLink, _
    src As DiagramNode, _
    dest As DiagramNode _
)

 Parameters

prototype

The link to use as a prototype. The properties of the new link are initialized from the property values of this link.

src

The origin node of the new link.

dest

The destination node of the new link.

 See Also