2019.2

Table Of Contents
VOID ExtractTo (
STRING destFilename,
LONG srcIndex,
LONG srcCount,
BOOL optimize
)
destFilename
Name of the PDF to create with the specified pages.
srcIndex
0-based index of the first page to copy.
srcCount
Number of contiguous pages starting from srcIndex to extract.
optimize
If true, optimize (linearize and garbage-collect) the output file.
Insert(index, *mediaSize)
Inserts a new blank page in the PDF file. See also: "Count()" on the previous page.
Syntax
VOID Insert (
LONG index,
IPdfRect * mediaSize
)
index
0-based index at which to insert the page. The page is inserted *before* the page at index
"index ". To insert a page at the end, use IPages.Count().
mediaSize
"IPdfRect" on page 282 structure containing the rectangular dimensions of the new page, in
points. Cannot be NULL.
Page 267