Rect Constructor (Point, Size)
.NET Framework 3.5
Initializes a new instance of the Rect structure that has the specified top-left corner location and the specified width and height.
Assembly: WindowsBase (in WindowsBase.dll)
You cannot use constructors in XAML.
Parameters
- location
- Type: System.Windows.Point
A point that specifies the location of the top-left corner of the rectangle.
- size
- Type: System.Windows.Size
A Size structure that specifies the width and height of the rectangle.
The following example shows how to create a new Rect structure by using the Rect(Point, Size) constructor.
private Rect createRectExample4() { // This constructor initializes a new instance of the Rect structure that has the // specified top-left corner location and the specified width and height (Size). Rect myRectangle = new Rect(new Point(15, 30), new Size(35, 40)); // 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.