SplitPdfExtractPages(Document, Int32, Int32) Method |
This function extracts pageCount pages from the srcPdfDocument starting with the page at startPage index
and creates a new Document containing the extracted pages. The resulted document can be further saved
into a file on disk or into a stream.
Namespace: ExpertPdf.PdfCreatorAssembly: epdfcreator (in epdfcreator.dll) Version: 21.1.0
Syntaxpublic static Document ExtractPages(
Document srcPdfDocument,
int startPageIndex,
int pageCount
)
Public Shared Function ExtractPages (
srcPdfDocument As Document,
startPageIndex As Integer,
pageCount As Integer
) As Document
Parameters
- srcPdfDocument Document
- The PDF document from where to extract pages.
- startPageIndex Int32
- The 0 based page index from where to start extraction.
- pageCount Int32
- The number of pages to extract.
Return Value
DocumentThe Document containing the extracted pages.
See Also