RectangleF Constructor (Single, Single, Single, Single) |
Initializes a new instance of the
RectangleF structure with the specified location and size.
Namespace:
Aspose.CAD
Assembly:
Aspose.CAD (in Aspose.CAD.dll) Version: 20.8
Syntaxpublic RectangleF(
float x,
float y,
float width,
float height
)
Public Sub New (
x As Single,
y As Single,
width As Single,
height As Single
)
public:
RectangleF(
float x,
float y,
float width,
float height
)
new :
x : float32 *
y : float32 *
width : float32 *
height : float32 -> RectangleFParameters
- x
- Type: SystemSingle
The x-coordinate of the upper-left corner of the rectangle. - y
- Type: SystemSingle
The y-coordinate of the upper-left corner of the rectangle. - width
- Type: SystemSingle
The width of the rectangle. - height
- Type: SystemSingle
The height of the rectangle.
See Also