VintaSoft Barcode .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / SearchDistortedDataMatrixBarcodes Property
Syntax Remarks Requirements SeeAlso
In This Topic
    SearchDistortedDataMatrixBarcodes Property (ReaderSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode reader must search "distorted" DataMatrix barcodes.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    <DescriptionAttribute("Barcode reader searches "distorted" DataMatrix barcodes.")>
    Public Property SearchDistortedDataMatrixBarcodes As Boolean
    
    
    [DefaultValue(True)]
    [Description("Barcode reader searches "distorted" DataMatrix barcodes.")]
    public bool SearchDistortedDataMatrixBarcodes { get; set; }
    
    
    [DefaultValue(True)]
    [Description("Barcode reader searches "distorted" DataMatrix barcodes.")]
    public: __property bool get_SearchDistortedDataMatrixBarcodes();
    public: __property void set_SearchDistortedDataMatrixBarcodes(
    bool value
    );
    [DefaultValue(True)]
    [Description("Barcode reader searches "distorted" DataMatrix barcodes.")]
    public:
    property bool SearchDistortedDataMatrixBarcodes { bool get(); void set(bool value); }

    Property Value

    false - search of "distorted" DataMatrix barcodes is disabled; true - search of "distorted" DataMatrix barcodes is enabled. Default value is true.
    Remarks

    "Distorted" barcode is not rectangular barcode (trapezoid, etc) which in most cases are received from web- or photo camera.

    Requirements

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

    See Also