ElementBuilderCurveTo Method |
Draw a Bezier curve from the current point to the given point (x2, y2) using
(cx1, cy1) and (cx2, cy2) as control points.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void CurveTo(
double cx1,
double cy1,
double cx2,
double cy2,
double x2,
double y2
)
Public Sub CurveTo (
cx1 As Double,
cy1 As Double,
cx2 As Double,
cy2 As Double,
x2 As Double,
y2 As Double
)
public:
virtual void CurveTo(
[InAttribute] double cx1,
[InAttribute] double cy1,
[InAttribute] double cx2,
[InAttribute] double cy2,
[InAttribute] double x2,
[InAttribute] double y2
) sealed
function CurveTo(cx1, cy1, cx2, cy2, x2, y2);
Parameters
- cx1
- Type: SystemDouble
the cx1
- cy1
- Type: SystemDouble
the cy1
- cx2
- Type: SystemDouble
the cx2
- cy2
- Type: SystemDouble
the cy2
- x2
- Type: SystemDouble
the x2
- y2
- Type: SystemDouble
the y2
See Also