Click or drag to resize

PdfiumFPDF_ImportPages Method

Import some pages to a PDF document.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static bool FPDF_ImportPages(
	IntPtr dest_doc,
	IntPtr src_doc,
	string pagerange,
	int index
)

Parameters

dest_doc  IntPtr
The destination document which add the pages.
src_doc  IntPtr
A document to be imported.
pagerange  String
A page range string, Such as "1,3,5-7". If this parameter is NULL, it would import all pages in src_doc.
index  Int32
The page index wanted to insert from.

Return Value

Boolean
TRUE for succeed, FALSE for Failed.
See Also