Checks which node is at a given location in the layout.

Namespace: TreeLayoutHelper
Assembly: TreeLayoutHelper (in TreeLayoutHelper.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public abstract IEnumerable<NodeWithBounds<TNode>> GetNodesAtPoint(
	int x,
	int y
)
Visual Basic
Public MustOverride Function GetNodesAtPoint ( _
	x As Integer, _
	y As Integer _
) As IEnumerable(Of NodeWithBounds(Of TNode))
Visual C++
public:
virtual IEnumerable<NodeWithBounds<TNode>>^ GetNodesAtPoint(
	int x, 
	int y
) abstract
J#
public abstract IEnumerable<NodeWithBounds<TNode>> GetNodesAtPoint(
	int x,
	int y
)
JScript
public abstract function GetNodesAtPoint(
	x : int, 
	y : int
) : IEnumerable<NodeWithBounds<TNode>>
JavaScript
function GetNodesAtPoint(x, y);

Parameters

x
Type: System..::..Int32
The horizontal position.
y
Type: System..::..Int32
The vertical position.

Return Value

An enumeration of all nodes found at the given location.

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionCanvas is currently nullNothingnullptra null reference (Nothing in Visual Basic).

See Also