Search
Diagram.GetNodeAt Method (Point, Boolean)
See Also
 






Finds and returns the top-most node that lies at the specified location.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DiagramNode GetNodeAt (
    Point point,
    bool excludeLocked
)

Visual Basic  Copy Code

Public Function GetNodeAt( _
    point As Point, _
    excludeLocked As Boolean _
) As DiagramNode

 Parameters

point

A Point instance identifying a diagram location.

excludeLocked

true if nodes that are locked should be omitted by searching; otherwise, false.

 Return Value

The DiagramNode found or a null reference (Nothing in Visual Basic) if no item has been found.

 See Also