This documentation is archived and is not being maintained.
Rect Constructor (Point, Point)
Visual Studio 2008
Initializes a new instance of the Rect structure that is exactly large enough to contain the two specified points.
Assembly: WindowsBase (in WindowsBase.dll)
You cannot use constructors in XAML.
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; }
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: