Table of Contents
- Getting Started
- EO.Pdf
- Overview
- Installation and Deployment
- Using HTML to PDF
- Using PDF Creator
- Working with Existing PDF Files
- Using in Web Application
- Advanced Topics
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
Splitting PDF File |
Simply call PdfDocument.Split to split a PDF file into multiple PdfDocument objects:
//This creates three new PdfDocument based on the source
//document. The first PdfDocument contains page 0 to 1,
//the second 2 to 3, the third from page 4 to the end.
//Note all page numbers are zero based.
PdfDocument[] docs = doc.Split(2, 4);