Click or drag to resize

PdfiumFPDFPage_GenerateContentEx(IntPtr, IntPtr) Method

Generate PDF Page content from the specified list of page objects.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static bool FPDFPage_GenerateContentEx(
	IntPtr page,
	IntPtr objList
)

Parameters

page  IntPtr
Handle to a page. Returned by FPDFPage_New(IntPtr, Int32, Double, Double)
objList  IntPtr
Handle to a list of objects, returned by FPDFPageObj_GetListFromPage(IntPtr) or FPDFPageObj_GetListFromForm(IntPtr). Can be IntPtr.Zero

Return Value

Boolean
True if successful, false otherwise.
Remarks
If handle to the list object is IntPtr.Zero then the page content will be generated, otherwise the content of the specified list. You should generate page content before you save or reload it or any changes to page will be lost.
See Also