Rectangle Constructor (Double, Double, Double, Double) |
Initializes a new instance of the
Rectangle class.
Namespace: GroupDocs.Parser.DataAssembly: GroupDocs.Parser (in GroupDocs.Parser.dll) Version: 20.12.0
Syntaxpublic Rectangle(
double left,
double top,
double right,
double bottom
)
Public Sub New (
left As Double,
top As Double,
right As Double,
bottom As Double
)
public:
Rectangle(
double left,
double top,
double right,
double bottom
)
new :
left : float *
top : float *
right : float *
bottom : float -> Rectangle
Parameters
- left
- Type: SystemDouble
The x-coordinate of the left edge of the rectangular area. - top
- Type: SystemDouble
The y-coordinate of the top edge of the rectangular area. - right
- Type: SystemDouble
The x-coordinate of the right edge of the rectangular area. - bottom
- Type: SystemDouble
The y-coordinate of the bottom edge of the rectangular area.
See Also