ElementBuilderRect Method |
Add a rectangle to the current path as a complete subpath.
Setting the current point is not required before using this function.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void Rect(
double x,
double y,
double width,
double height
)
Public Sub Rect (
x As Double,
y As Double,
width As Double,
height As Double
)
public:
virtual void Rect(
[InAttribute] double x,
[InAttribute] double y,
[InAttribute] double width,
[InAttribute] double height
) sealed
function Rect(x, y, width, height);
Parameters
- x
- Type: SystemDouble
the x
- y
- Type: SystemDouble
the y
- width
- Type: SystemDouble
the width
- height
- Type: SystemDouble
the height
See Also