Rect Constructor (Double, Double, Double, Double) |
Creates a Rect and initialize it using specified parameters.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Rect(
double x1,
double y1,
double x2,
double y2
)
Public Sub New (
x1 As Double,
y1 As Double,
x2 As Double,
y2 As Double
)
public:
Rect(
[InAttribute] double x1,
[InAttribute] double y1,
[InAttribute] double x2,
[InAttribute] double y2
)
pdftron.PDF.Rect = function(x1, y1, x2, y2);
Parameters
- x1
- Type: SystemDouble
The x coordinate of the bottom left corner.
- y1
- Type: SystemDouble
They coordinate of the bottom left corner.
- x2
- Type: SystemDouble
Thex coordinate of the top right corner.
- y2
- Type: SystemDouble
They coordinate of the top right corner.
Remarks
The rect is not attached to any Cos/SDF object.
See Also