ComponentFactory.Krypton.Toolkit.KryptonTreeView.GetNodeAt C# (CSharp) Method

GetNodeAt() public method

Retrieves the tree node that is at the specified point.
public GetNodeAt ( Point pt ) : TreeNode
pt Point The Point to evaluate and retrieve the node from.
return System.Windows.Forms.TreeNode
        public TreeNode GetNodeAt(Point pt)
        {
            return _treeView.GetNodeAt(pt);
        }

Same methods

KryptonTreeView::GetNodeAt ( int x, int y ) : TreeNode
KryptonTreeView