XPTable.Models.Table.RowIndexAt C# (CSharp) Method

RowIndexAt() public method

Returns the index of the Row at the specified client point
public RowIndexAt ( Point p ) : int
p Point The point of interest
return int
        public int RowIndexAt(Point p)
        {
            return this.RowIndexAt(p.X, p.Y);
        }

Same methods

Table::RowIndexAt ( int x, int y ) : int
Table