Rect::Contains Method (Double, Double)
.NET Framework (current version)
Indicates whether the rectangle contains the specified x-coordinate and y-coordinate.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- x
-
Type:
System::Double
The x-coordinate of the point to check.
- y
-
Type:
System::Double
The y-coordinate of the point to check.
The following example shows how to use the Contains(Double, Double) method to determine if the rectangle contains the point specified by the given x-coordinate and y-coordinate.
private bool rectContainsExample3() { // Initialize new rectangle. Rect myRectangle = new Rect(); // The Location property specifies the coordinates of the upper left-hand // corner of the rectangle. myRectangle.Location = new Point(10, 5); // Set the Size property of the rectangle with a width of 200 // and a height of 50. myRectangle.Size = new Size(200, 50); // Using the Contains method, see if the rectangle contains the specified // point specified by the given X and Y coordinates. doesContain is false // because the X and Y coordinates specify a point outside of myRectangle. bool doesContain = myRectangle.Contains(4, 13); return doesContain; }
.NET Framework
Available since 3.0
Available since 3.0
Show: