VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / DataMatrixLPatternMaxErasures Property
Syntax Remarks Requirements SeeAlso
In This Topic
    DataMatrixLPatternMaxErasures Property (ReaderSettings)
    In This Topic
    Gets or sets the number of maximum erasures on each side of "L" pattern of Data Matrix barcode.
    Syntax
    'Declaration
    
    <DescriptionAttribute("The maximum erasues in "L" pattern of Data Matrix barcode.")>
    <DefaultValueAttribute(5)>
    Public Property DataMatrixLPatternMaxErasures As Integer
    
    
    [Description("The maximum erasues in "L" pattern of Data Matrix barcode.")]
    [DefaultValue(5)]
    public int DataMatrixLPatternMaxErasures { get; set; }
    
    
    [Description("The maximum erasues in "L" pattern of Data Matrix barcode.")]
    [DefaultValue(5)]
    public: __property int get_DataMatrixLPatternMaxErasures();
    public: __property void set_DataMatrixLPatternMaxErasures(
    int value
    );
    [Description("The maximum erasues in "L" pattern of Data Matrix barcode.")]
    [DefaultValue(5)]
    public:
    property int DataMatrixLPatternMaxErasures { int get(); void set(int value); }

    Property Value

    0 - "L" pattern cannot have erasures;
    1 - "L" pattern can have 1 erasure on each side;
    2 - "L" pattern can have 2 erasures on each side;
    N - "L" pattern can have N erasures on each side;
    Default value is 5.
    Remarks

    Increasing value of this property will decrease the recognition speed but will allow to read damaged barcodes.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also