|
THotPDF.Version
|
맨 위 이전 다음 |
|
Determines version of the PDF.
type TPDFVersType = (pdf13, pdf14, pdf15, pdf16);
Delphi 구문: property Version: TPDFVersType;
C++ 구문: __property TPDFVersType Version;
설명 PDF version 1.6을 따르는 file의 경우 property version은 다음과 같아야 합니다
Version := pdf16;
하지만 이전 PDF version을 따르는 모든 file도 version 1.6을 따르므로, PDF 1.6을 처리하는 application은 이전 version의 file도 받을 수 있습니다
Value Meaning pdf13 PDF 1.3 version. pdf14 PDF 1.4 version. pdf15 PDF 1.5 version. pdf16 PDF 1.6 version. |