Rect Constructor (Point, Vector)
.NET Framework (current version)
Initializes a new instance of the Rect structure that is exactly large enough to contain the specified point and the sum of the specified point and the specified vector.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- point
-
Type:
System.Windows::Point
The first point the rectangle must contain.
- vector
-
Type:
System.Windows::Vector
The amount to offset the specified point. The resulting rectangle will be exactly large enough to contain both points.
The following example shows how to create a new Rect structure by using the Rect(Point, Vector) constructor.
private Rect createRectExample5() { // This constructor Intializes a new instance of the Rect structure that is exactly // large enough to contain the specified point and the sum of the specified point // and the specified vector. Rect myRectangle = new Rect(new Point(15, 30), new Vector(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
Available since 3.0
Show: