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





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

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DiagramLink CreateDiagramLink (
    DiagramNode origin,
    TableNode destination,
    int destRow
)

Visual Basic  Copy Code

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

 Parameters

origin
The origin node.
destination

The destination node.

destRow
The zero-based index of the destination table row of the new link.

 Return Value

The newly created DiagramLink instance.

 Remarks

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

 See Also