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





Returns the topmost node that lies at the specified position.

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 Microsoft.Maui.Graphics.Point specifying a diagram point in logical coordinates.

excludeLocked

Specifies whether locked nodes should be excluded from the search.

 Return Value

A DiagramNode instance if a node lies at the specified location, otherwise null.

 See Also