Search
TreeViewNode.ItemFromPoint Method
See Also
 






Returns the item at the specified location.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public TreeViewItem ItemFromPoint (
    Point point,
    bool isDiagramCoordinate
)

Visual Basic  Copy Code

Public Function ItemFromPoint( _
    point As Point, _
    isDiagramCoordinate As Boolean _
) As TreeViewItem

 Parameters

point

The point to check.

isDiagramCoordinate

true if the point is specified in diagram coordinates; false if the point is specified in item local coordinates.

 Return Value

The TreeViewItem instance that contains the specified point.

 See Also