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

HitTest() public method

Returns a TableRegions value that represents the table region at the specified client point
public HitTest ( Point p ) : TableRegion
p Point The point of interest
return TableRegion
        public TableRegion HitTest(Point p)
        {
            return this.HitTest(p.X, p.Y);
        }

Same methods

Table::HitTest ( int x, int y ) : TableRegion
Table