Rect Constructor (Point, Point)
.NET Framework (current version)
Initializes a new instance of the Rect structure that is exactly large enough to contain the two specified points.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- point1
-
Type:
System.Windows::Point
The first point that the new rectangle must contain.
- point2
-
Type:
System.Windows::Point
The second point that the new rectangle must contain.
The following example shows how to create a new Rect structure by using the Rect(Point, Point) constructor.
private Rect createRectExample3() { // This constructor intializes a new instance of the Rect structure that is // exactly large enough to contain the two specified points. Rect myRectangle = new Rect(new Point(15, 30), new Point(50,70)); // Returns a rectangle with a position of 15,30, a width of 35 and height of 40. return myRectangle; }
.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: