Search
Factory.CreateDiagramLink Method (TableNode, TableNode)
See Also
 





Creates a new DiagramLink instance between the specified tables and adds it to the Links collection of the underlying diagram.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DiagramLink CreateDiagramLink (
    TableNode origin,
    TableNode destination
)

Visual Basic  Copy Code

Public Function CreateDiagramLink( _
    origin As TableNode, _
    destination As TableNode _
) As DiagramLink

 Parameters

origin
The origin node.
destination
The destination node.

 Return Value

The newly created DiagramLink instance.

 Remarks

The method creates a link connecting the tables specified by origin and destination. For further customization of the link, use the properties and methods of the DiagramLink class.

 See Also