Click or drag to resize

PdfiumFPDFPath_AppendLine Method

Adds a rectangle to the path.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static void FPDFPath_AppendLine(
	IntPtr path,
	float x1,
	float y1,
	float x2,
	float y2
)

Parameters

path  IntPtr
Handle to the destination path returned by FPDFPath_Create or FPDFPathObj_GetPath(IntPtr).
x1  Single
The x-coordinate of the start of a new line.
y1  Single
The y-coordinate of the start of a new line.
x2  Single
The x-coordinate of the end of a line.
y2  Single
The y-coordinate of the end of a line.
Remarks
This method internally calls the FPDFPath_AddPointCount(IntPtr, Int32) method.
See Also