typedef enum tag_EEPNPDFVERSION
{
PDFVERSION_AUTO = 0 ,
PDFVERSION_1_3 ,
PDFVERSION_1_4 ,
PDFVERSION_1_5
} EEPNPDFVERSION, L_FAR * pEEPNPDFVERSION;
The EEPNPDFVERSION enumeration specifies the PDF version to be used when saving PDF documents.
Value |
Meaning |
PDFVERSION_AUTO |
The PDF writer determines the version to be used when saving PDF documents automatically. Generally, PDF documents will be saved using version 1.2 or above depending on the contents of the document. |
PDFVERSION_1_3 |
Save the PDF document, using version 1.3 or above depending on the contents of the document. |
PDFVERSION_1_4 |
Save the PDF document, using version 1.4. |
PDFVERSION_1_5 |
Save the PDF document, using version 1.5. |
Comments
The enumeration is used within the EPNPDFOPTIONS structure.