PDFDocInsertPages Method (Int32, PDFDoc, PageSet, PDFDocInsertFlag) |
Inserts a range of pages from specified PDFDoc using PageSet
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void InsertPages(
int insertBeforeThisPage,
PDFDoc sourceDoc,
PageSet sourcePageSet,
PDFDocInsertFlag flag
)
Public Sub InsertPages (
insertBeforeThisPage As Integer,
sourceDoc As PDFDoc,
sourcePageSet As PageSet,
flag As PDFDocInsertFlag
)
public:
virtual void InsertPages(
[InAttribute] int insertBeforeThisPage,
[InAttribute] PDFDoc^ sourceDoc,
[InAttribute] PageSet^ sourcePageSet,
[InAttribute] PDFDocInsertFlag flag
) sealed
function InsertPages(insertBeforeThisPage, sourceDoc, sourcePageSet, flag);
Parameters
- insertBeforeThisPage
- Type: SystemInt32
the destination of the insertion. If less than or equal to 1,
the pages are added to the beginning of the document. If larger than the number of pages
in the destination document, the pages are appended to the document.
- sourceDoc
- Type: pdftron.PDFPDFDoc
source PDFDoc to insert from - sourcePageSet
- Type: pdftron.PDFPageSet
a collection of the page number to insert - flag
- Type: pdftron.PDFPDFDocInsertFlag
specifies insert options
See Also