NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TreeView.GetNodeAt (Int32, Int32)

Returns the TreeNode at the given location in tree view coordinates.

[Visual Basic]
Overloads Public Function GetNodeAt( _
   ByVal x As Integer, _
   ByVal y As Integer _
) As TreeNode
[C#]
public TreeNode GetNodeAt(
   int x,
   int y
);
[C++]
public: TreeNode* GetNodeAt(
   int x,
   int y
);
[JScript]
public function GetNodeAt(
   x : int,
   y : int
) : TreeNode;

Parameters

x
x position to check against
y
y position to check against

Return Value

TreeNode The tree node at the given location.

See Also

TreeView Class | TreeView Members | System.WinForms Namespace | TreeView.GetNodeAt Overload List