Click or drag to resize

SplitPdf Class

This class offers the necessary interface to extract pages from a PDF document
Inheritance Hierarchy
SystemObject
  ExpertPdf.PdfCreatorSplitPdf

Namespace:  ExpertPdf.PdfCreator
Assembly:  epdfcreator (in epdfcreator.dll) Version: 17.0.0
Syntax
public class SplitPdf

The SplitPdf type exposes the following members.

Constructors
  NameDescription
Public methodSplitPdf
Top
Methods
  NameDescription
Public methodStatic memberExtractPages(String, Int32, Int32)
This function extracts pageCount pages from the srcPdfFilePath PDF file 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.
Public methodStatic memberExtractPages(Document, Int32, Int32)
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.
Public methodStatic memberExtractPages(String, Int32, Int32, String)
This function extracts pageCount pages from the srcPdfFilePath PDF file starting with the page at startPage index and creates a new Document containing the extracted pages. The resulted document is saved into the destFilePath file.
Public methodStatic memberExtractPages(Document, Int32, Int32, String)
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 is saved into the destFilePath file.
Top
See Also