Click or drag to resize
Pdf Library for .NET

PdfBezierCurveElement Constructor

Constructs a Bezier curve element.

Namespace:  SelectPdf
Assembly:  Select.Pdf (in Select.Pdf.dll) Version: 20.2
Syntax
public PdfBezierCurveElement(
	float x1,
	float y1,
	float x2,
	float y2,
	float x3,
	float y3,
	float x4,
	float y4
)

Parameters

x1
Type: SystemSingle
The first point X coordinate.
y1
Type: SystemSingle
The first point Y coordinate.
x2
Type: SystemSingle
The second point X coordinate.
y2
Type: SystemSingle
The second point Y coordinate.
x3
Type: SystemSingle
The third point X coordinate.
y3
Type: SystemSingle
The third point Y coordinate.
x4
Type: SystemSingle
The fourth point X coordinate.
y4
Type: SystemSingle
The fourth point Y coordinate.
See Also