Rect Constructor (Point, Size)
.NET Framework (current version)
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)
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; }
.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: