ZForge.Controls.TreeViewAdv.Tree.FixedRowHeightLayout.GetRowAt C# (CSharp) Method

GetRowAt() public method

public GetRowAt ( Point point ) : int
point Point
return int
        public int GetRowAt(Point point)
        {
            point = new Point(point.X, point.Y + (_treeView.FirstVisibleRow * _rowHeight) - _treeView.ColumnHeaderHeight);
            return point.Y / _rowHeight;
        }