PathAppendCubicBezierUsingCurrentPoint Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Append a cubic Bézier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the Bézier control points. The new current point shall be (x3, y3).

Namespace:  Apitron.PDF.Kit.FixedLayout.Content
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public void AppendCubicBezierUsingCurrentPoint(
	double x2,
	double y2,
	double x3,
	double y3
)

Parameters

x2
Type: SystemDouble
The x2.
y2
Type: SystemDouble
The y2.
x3
Type: SystemDouble
The x3.
y3
Type: SystemDouble
The y3.
Examples

C#
FixedLayout.Content.Path path = new FixedLayout.Content.Path();
path.AppendCubicBezierUsingCurrentPoint(20.2,200,300,30);
page.Content.StrokePath(path);
See Also

Reference