Rect Constructor (Size)
.NET Framework (current version)
Initializes a new instance of the Rect structure that is of the specified size and is located at (0,0).
Assembly: WindowsBase (in WindowsBase.dll)
The following example shows how to create a new Rect structure by using the Rect(Size) constructor.
private Rect createRectExample2() { // This constructor initializes a new instance of the Rect structure that // is of the specified size and is located at (0,0). Rect myRectangle = new Rect(new Size(200, 50)); // Returns a rectangle with a width of 200, a height of 50 and a position // of 0,0. return myRectangle; }
.NET Framework
Available since 3.0
Available since 3.0
Show: