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

    Property Value

    True - barcode reader must search for mirrored 2D barcodes; false - barcode reader must not search for mirrored 2D barcodes. Default value is true.
    Remarks

    Recognition of mirrored 2D barcodes is supported for the following 2D barcode types:

    • Aztec Code
    • DotCode
    • DataMatrix (for square matrix only)
    • QR Code

    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