BOOL PtInRegion( int x, int y ) const;
BOOL PtInRegion( POINT point ) const;
x
Specifies the x-coordinate of the point to test.
y
Specifies the y-coordinate of the point to test.
point
The x- and y-coordinate of point specify the x- and y-coordinate of the point to test the value of. The point parameter can either be a POINT structure or a CPoint object.
Checks whether the point given by x and y is in the region stored in the CRgn object.
TRUE if the point is in the region; otherwise FALSE.
::PtInRegion