Click or drag to resize

PDFACompliance Constructor (Boolean, String, String, PDFAComplianceConformance, PDFAComplianceErrorCodeReference, Int32, Boolean)

Perform PDF/A validation or PDF/A conversion on the input PDF document.

Namespace:  pdftron.PDF.PDFA
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public PDFACompliance(
	bool convert,
	string filepath,
	string password,
	PDFAComplianceConformance conf,
	PDFAComplianceErrorCodeReference exceptions,
	int max_ref_objs,
	bool first_stop
)

Parameters

convert
Type: SystemBoolean
A flag used to instruct PDF/A processor to perform PDF/A conversion (if 'true') or PDF/A validation (if 'false'). After PDF/A conversion you can save the resulting document using SaveAsync() method(s).
filepath
Type: SystemString
the file_path
password
Type: SystemString
An optional parameter that can be used to specify the password for encrypted PDF documents (typically only useful in the conversion mode).
conf
Type: pdftron.PDF.PDFAPDFAComplianceConformance
The PDF conformance level. The default value is e_Level1B.
exceptions
Type: pdftron.PDF.PDFAPDFAComplianceErrorCodeReference
the exceptions
max_ref_objs
Type: SystemInt32
The maximum number of object references per error condition.
first_stop
Type: SystemBoolean
the first_stop
See Also