Rect::Contains Method (Point)
.NET Framework (current version)
Indicates whether the rectangle contains the specified point.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- point
-
Type:
System.Windows::Point
The point to check.
Return Value
Type: System::Booleantrue if the rectangle contains the specified point; otherwise, false.
The following example shows how to use the Contains(Point) method to determine if the rectangle contains the specified Point.
private bool rectContainsExample1() { // 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. doesContain is true because the point is inside of myRectangle. bool doesContain = myRectangle.Contains(new Point(13, 30)); return doesContain; }
.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: