Click or drag to resize

BoundingRectangle Constructor (Double, Double, Double, Double)

Initializes a new instance.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public BoundingRectangle(
	double left,
	double bottom,
	double right,
	double top
)

Parameters

left
Type: SystemDouble
The x coordinate of the lower-left corner.
bottom
Type: SystemDouble
The y coordinate of the lower-left corner.
right
Type: SystemDouble
The x coordinate of the upper-right corner.
top
Type: SystemDouble
The y coordinate of the upper-right corner.
Exceptions
ExceptionCondition
ArgumentException Thrown when the right parameter is less than the left parameter or when the top parameter is less than the bottom parameter.
See Also