ZForge.Controls.TreeViewAdv.Tree.FixedRowHeightLayout.GetRowAt C# (CSharp) Méthode

GetRowAt() public méthode

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