[]
Represents the error correction level of a QR code.
public enum ErrorCorrectionLevel
Public Enum ErrorCorrectionLevel
worksheet.Range["A1"].Value = "1234567890";
worksheet.Range["B1"].Formula = "=BC_QRCODE(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"" + ErrorCorrectionLevel.H.ToString() + "\",2,\"auto\",\"auto\",FALSE,0,,\"UTF-8\",4,4,4,4)";
IQRCode qrCode = (IQRCode)worksheet.Range["B1"].Value;
ErrorCorrectionLevel errorCorrectionLevel = qrCode.ErrorCorrectionLevel;
| Name | Description |
|---|---|
| H | High level. |
| L | Low level. |
| M | Medium level. |
| Q | Quartile level. |