Search
Diagram.GetNodeAt Method (Point)
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
)

Visual Basic  Copy Code

Public Function GetNodeAt( _
    point As Point _
) As DiagramNode

 Parameters

point
A Microsoft.Maui.Graphics.Point instance identifying a diagram location.

 Return Value

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

 Remarks

The method starts searching from the top of the z-order and returns the first node that contains the specified point.

 See Also