PDFDocInsertPages Method (Int32, PDFDoc, Int32, Int32, PDFDocInsertFlag) |
[Missing <summary> documentation for "M:pdftron.PDF.PDFDoc.InsertPages(System.Int32,pdftron.PDF.PDFDoc,System.Int32,System.Int32,pdftron.PDF.PDFDocInsertFlag)"]
Inserts a range of pages from specified PDFDoc
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void InsertPages(
int insertBeforeThisPage,
PDFDoc sourceDoc,
int startPage,
int endPage,
PDFDocInsertFlag flag
)
Public Sub InsertPages (
insertBeforeThisPage As Integer,
sourceDoc As PDFDoc,
startPage As Integer,
endPage As Integer,
flag As PDFDocInsertFlag
)
public:
virtual void InsertPages(
[InAttribute] int insertBeforeThisPage,
[InAttribute] PDFDoc^ sourceDoc,
[InAttribute] int startPage,
[InAttribute] int endPage,
[InAttribute] PDFDocInsertFlag flag
) sealed
function InsertPages(insertBeforeThisPage, sourceDoc, startPage, endPage, 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 - startPage
- Type: SystemInt32
start of the page number to insert - endPage
- Type: SystemInt32
end of the page number to insert - flag
- Type: pdftron.PDFPDFDocInsertFlag
specifies insert options
See Also