Search
Diagram.FindNode Method
See Also
 





Finds the node that has the specified tag value.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DiagramNode FindNode (
    Object tagValue
)

Visual Basic  Copy Code

Public Function FindNode( _
    tagValue As Object _
) As DiagramNode

 Parameters

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

 Return Value

The DiagramNode instance if found; otherwise, null (Nothing in Visual Basic).

 Remarks

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

 See Also