[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IQRCode.ErrorCorrectionLevel

ErrorCorrectionLevel Property

ErrorCorrectionLevel

Gets the error correction level used by the BC_QRCODE formula result.

This value specifies the level of data recovery available when the QRCode is damaged or partially obscured.

Declaration
ErrorCorrectionLevel ErrorCorrectionLevel { get; }
ReadOnly Property ErrorCorrectionLevel As ErrorCorrectionLevel
Examples
worksheet.Range["A1"].Value = "1234567890";
worksheet.Range["B1"].Formula = "=BC_QRCODE(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"H\",2,\"auto\",\"auto\",FALSE,0,,\"UTF-8\",4,4,4,4)";
IQRCode qrCode = (IQRCode) worksheet.Range["B1"].Value;
ErrorCorrectionLevel errorCorrectionLevel = qrCode.ErrorCorrectionLevel;