addPage

Add a page from an input PDF file to an output PDF file.
addPage([in] LONG inputHandle, [in] int pageNum, [in] LONG outputHandle)
This function copies one page, given by pageNum, from an input PDF file, in, and appends it to an output PDF file, out.
VB6:
Dim in as Long, out as Long in = pdf.openInput "c:/test/input.pdf" out = pdf.openOutput "c:/test/output.pdf" ' append page 3 of input.pdf to output.pdf pdf.addPage in, 3, out
VB.net:
Dim in as Long, out as Long in = pdf.openInput("c:/test/input.pdf") out = pdf.openOutput("c:/test/output.pdf") ' append page 3 of input.pdf to output.pdf pdf.addPage(in, 3, out)
addPageRotated
addPageRotatedCropped
addPages