[]
Gets the error correction level for the barcode.
This value corresponds to the error correction level specified for the PDF417 barcode.
int ErrorCorrectionLevel { get; }
ReadOnly Property ErrorCorrectionLevel As Integer
worksheet.Range["A1"].Value = "1234567890";
worksheet.Range["B1"].Formula = "=BC_PDF417(A1, , , 4)";
IPDF417 pdf417 = (IPDF417) worksheet.Range["B1"].Value;
int errorCorrectionLevel = pdf417.ErrorCorrectionLevel;