pdfPrintSetFirstPage

Set the first page to print.
void pdfPrintSetFirstPage(PDFHandle pdf, int page)
This function sets the first page to print, and pdfPrintSetLastPage sets the last page to print.

This is a simplified form of pdfPrintSetPages. If the pdfPrintSetPages function is called, the values set by pdfPrintSetFirstPage and pdfPrintSetLastPage will be ignored.

pdfPrintResetParams resets this to its default value, which is to start printing with the first page.

C:
pdfPrintSetFirstPage(pdf, 10); pdfPrintSetLastPage(pdf, 20);
pdfPrintSetLastPage
pdfPrintSetPages
pdfPrintResetParams