| Rect2dContains Method (Double, Double) | 
        
         
            Determines if the specified point is contained within the rectangular region defined by this Rectangle. 
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic bool Contains(
	double x,
	double y
)
Public Function Contains ( 
	x As Double,
	y As Double
) As Boolean
public:
bool Contains(
	double x, 
	double y
)
member Contains : 
        x : float * 
        y : float -> bool 
Parameters
- x
- Type: SystemDouble
 x-coordinate of the point
- y
- Type: SystemDouble
 y-coordinate of the point
Return Value
Type: 
Boolean See Also
See Also