HotPDF Developer Reference
Delphi and C++Builder PDF component help
|
THotPDF.Version
|
Top Previous Next |
|
Determines version of the PDF.
type TPDFVersType = (pdf13, pdf14, pdf15, pdf16);
Delphi syntax: property Version: TPDFVersType;
C++ syntax: __property TPDFVersType Version;
Description For a file conforming to PDF version 1.6, the propety version should be
Version := pdf16;
However, since any file conforming to an earlier version of PDF also conforms to version 1.6, an application that processes PDF 1.6 can also accept files with any of previous versions.
Value Meaning pdf13 PDF 1.3 version. pdf14 PDF 1.4 version. pdf15 PDF 1.5 version. pdf16 PDF 1.6 version. |