|
THotPDF.Version
|
先頭 前へ 次へ |
|
Determines version of the PDF.
type TPDFVersType = (pdf13, pdf14, pdf15, pdf16);
Delphi syntax: property Version: TPDFVersType;
C++ syntax: __property TPDFVersType Version;
説明 PDF version 1.6 に準拠する file では、property
Version := pdf16;
ただし、PDF の earlier version に準拠する file は PDF version 1.6 にも準拠するため、PDF 1.6 を処理する application は previous versions の files も受け入れられます
Value Meaning pdf13 PDF 1.3 version. pdf14 PDF 1.4 version. pdf15 PDF 1.5 version. pdf16 PDF 1.6 version. |