ImageGear .NET v25.2 - Updated
ImageGear.Barcode Assembly / ImageGear.Barcode Namespace / ImGearBarcodeWriterPDF417 Class / ErrorCorrectionLevel Property




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

    Property Value

    The ImGearBarcodePDF417ErrorCorrectionLevel value set.
    Remarks

    The default value is ImGearBarcodePDF417ErrorCorrectionLevel.ErrorCorrectionAuto.

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

    See Also