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

CellAt() public method

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

Same methods

Table::CellAt ( int x, int y ) : Cell
Table