ExportPdfVersion

Use this named property in the PostImport or PostClassify event to specify the PDF format used for export.

Note:

The parameter is taken into account only if the option "Generate PDF file on export" in the Runtime Server configuration is active.

For more information, see "Generate PDF files on export" in the Brainware Intelligent Capture Runtime Server Help.

Syntax

pWorkdoc.NamedProperty("ExportPdfVersion") as String
Parameter Description
A2B Default value.

Export the file in PDF/A-2B format.

1.7 Export the file in PDF 1.7 format.

Sample Code

Private Sub ScriptModule_PostClassify(pWorkdoc as SCBCdrPROJLib.SCBCdrWorkdoc)
   pWorkdoc.NamedProperty("ExportPdfVersion") = "1.7"
End Sub