PDFACompliance Constructor (Boolean, Byte, String, PDFAComplianceConformance, PDFAComplianceErrorCodeReference, Int32, Boolean) |
Perform PDF/A validation or PDF/A conversion on the input PDF document
which is stored in a memory buffer.
Namespace:
pdftron.PDF.PDFA
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public PDFACompliance(
bool convert,
byte[] byteArray,
string password,
PDFAComplianceConformance conf,
PDFAComplianceErrorCodeReference exceptions,
int max_ref_objs,
bool first_stop
)
Public Sub New (
convert As Boolean,
byteArray As Byte(),
password As String,
conf As PDFAComplianceConformance,
exceptions As PDFAComplianceErrorCodeReference,
max_ref_objs As Integer,
first_stop As Boolean
)
public:
PDFACompliance(
[InAttribute] bool convert,
[InAttribute] array<unsigned char>^ byteArray,
[InAttribute] String^ password,
[InAttribute] PDFAComplianceConformance conf,
[InAttribute] PDFAComplianceErrorCodeReference^ exceptions,
[InAttribute] int max_ref_objs,
[InAttribute] bool first_stop
)
pdftron.PDF.PDFA.PDFACompliance = function(convert, byteArray, password, conf, exceptions, max_ref_objs, 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).
- byteArray
- Type: SystemByte
[Missing <param name="byteArray"/> documentation for "M:pdftron.PDF.PDFA.PDFACompliance.#ctor(System.Boolean,System.Byte[],System.String,pdftron.PDF.PDFA.PDFAComplianceConformance,pdftron.PDF.PDFA.PDFAComplianceErrorCodeReference,System.Int32,System.Boolean)"]
- 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