Search
Diagram.FindLink Method
See Also
 





Finds the link that has the specified tag value.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DiagramLink FindLink (
    Object tagValue
)

Visual Basic  Copy Code

Public Function FindLink( _
    tagValue As Object _
) As DiagramLink

 Parameters

tagValue
A .NET object assigned as a tag and characterizing the link to be searched for.

 Return Value

The DiagramLink instance if found, or null otherwise.

 Remarks

Use this method to find a link that has been marked earlier with the specified tag.

 See Also