Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / WriterQRCode Class / ErrorCorrectionLevel Property




In This Topic
    ErrorCorrectionLevel Property (WriterQRCode)
    In This Topic
    Gets and sets the error correction level desired in the QR Code barcode.
    Syntax
    'Declaration
     
    Public Property ErrorCorrectionLevel As QRCodeErrorCorrectionLevel
    'Usage
     
    Dim instance As WriterQRCode
    Dim value As QRCodeErrorCorrectionLevel
     
    instance.ErrorCorrectionLevel = value
     
    value = instance.ErrorCorrectionLevel
    public QRCodeErrorCorrectionLevel ErrorCorrectionLevel {get; set;}
    public: __property QRCodeErrorCorrectionLevel get_ErrorCorrectionLevel();
    public: __property void set_ErrorCorrectionLevel( 
       QRCodeErrorCorrectionLevel value
    );
    public:
    property QRCodeErrorCorrectionLevel ErrorCorrectionLevel {
       QRCodeErrorCorrectionLevel get();
       void set (    QRCodeErrorCorrectionLevel value);
    }

    Property Value

    The QRCodeErrorCorrectionLevel value set.
    Remarks
    The QRCodeErrorCorrectionLevel value set.

    The default value is QRCodeErrorCorrectionLevel.ErrorCorrectionAuto.

    The error correction level for the QRCode ranges from QRCodeErrorCorrectionLevel.ErrorCorrectionL to a high of QRCodeErrorCorrectionLevel.ErrorCorrectionH. A high error correction level should be used in application where symbol damage is expected. It is recomended that the QRCodeErrorCorrectionLevel.ErrorCorrectionAuto level be used in most cases.

    See Also