Registriert seit: 7. Feb 2020
131 Beiträge
Delphi 11 Alexandria
|
AW: Fast report, *.pdf via code erstellen
25. Sep 2023, 13:33
welche unit muss ich einbinden für die Konstanten psNone, pv17
Ich zitiere mal deinen eigenen Post.
Delphi-Quellcode:
{ Set the PDF standard
TPDFStandard = (psNone, psPDFA_1a, psPDFA_1b, psPDFA_2a, psPDFA_2b, psPDFA_3a, psPDFA_3b);
It is required to add the frxExportPDFHelpers module to the uses list:
uses frxExportPDFHelpers; }
frxPDFExport1.PDFStandard := psNone;
Delphi-Quellcode:
{ You can set the PDF standard version for PDFStandard = psNone
TPDFVersion = (pv14, pv15, pv16, pv17);
It is required to add the frxExportPDFHelpers module to the uses list:
uses frxExportPDFHelpers; }
frxPDFExport1.PDFVersion := pv17;
|
|
Zitat
|