Rectangle.Rectangle Constructors
Initializes a new instance of the Rectangle class.
Overload List
Name | Description | |
---|---|---|
Public method | Rectangle() | Initializes a new instance of the Rectangle class that is empty. |
Public method | Rectangle(System.Double xMin, System.Double yMin, System.Double xMax, System.Double yMax) | Initializes a new instance of the Rectangle class with the given coordinates. |
Rectangle()
Initializes a new instance of the Rectangle class that is empty.Syntax
public Rectangle ()
Rectangle(System.Double xMin, System.Double yMin, System.Double xMax, System.Double yMax)
Initializes a new instance of the Rectangle class with the given coordinates.Syntax
public Rectangle (
System.Double xMin,
System.Double yMin,
System.Double xMax,
System.Double yMax
)
Parameters
xMin
Type: System.Double
The x coordinate of the left edge.
The x coordinate of the left edge.
yMin
Type: System.Double
The y coordinate of the bottom edge.
The y coordinate of the bottom edge.
xMax
Type: System.Double
The x coordinate of the right edge.
The x coordinate of the right edge.
yMax
Type: System.Double
The y coordinate of the top edge.
The y coordinate of the top edge.
Remarks
The corners will have undefined coordinates.
Platforms
Windows, Linux, Android