Search
Diagram.GetNearestNode Method
See Also
 





Returns the node nearest to the specified point.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DiagramNode GetNearestNode (
    PointF point,
    float maxDistance,
    DiagramNode ignored
)

Visual Basic  Copy Code

Public Function GetNearestNode( _
    point As PointF, _
    maxDistance As Single, _
    ignored As DiagramNode _
) As DiagramNode

 Parameters

point

maxDistance
The maximum distance from the point at which to look for nodes.
ignored
A node that should be ignored.

 Return Value

The DiagramNode nearest to the specified point.

 Remarks

The last argument is useful when calling this method from NodeCreated and NodeModified handlers and the affected node should not be included in the search.

 See Also