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




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

    Property Value

    The PDF417ErrorCorrectionLevel value set.
    Remarks
    The PDF417ErrorCorrectionLevel value set.

    The default value is PDF417ErrorCorrectionLevel.ErrorCorrectionAuto.

    The error correction level for the PDF417 ranges from PDF417ErrorCorrectionLevel.ErrorCorrection0 to a high of PDF417ErrorCorrectionLevel.ErrorCorrection8. A high error correction level should be used in application where symbol damage is expected. It is recomended that the PDF417ErrorCorrectionLevel.ErrorCorrectionAuto level be used in most cases.

    See Also