XPTable.Models.Table.HitTest C# (CSharp) 메소드

HitTest() 공개 메소드

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
리턴 TableRegion
        public TableRegion HitTest(Point p)
        {
            return this.HitTest(p.X, p.Y);
        }

Same methods

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