Skip to content

Latest commit

 

History

History
72 lines (62 loc) · 1.98 KB

File metadata and controls

72 lines (62 loc) · 1.98 KB
layout default-layout
title BarcodeWidthRangeArray - Dynamsoft Barcode Reader Parameters
description The parameter BarcodeWidthRangeArray of Dynamsoft Barcode Reader defines the range of widths (in pixels) for barcodes searching and result filtering.
keywords BarcodeWidthRangeArray , parameter reference, parameter
needGenerateH3Content true
needAutoGenerateSidebar true
noTitleIndex true

BarcodeWidthRangeArray

Parameter BarcodeWidthRangeArray defines the range of widths (in pixels) for barcodes searching and result filtering.

Example

{
    "BarcodeWidthRangeArray": 
    [
        {
            "MinValue": 100,
            "MaxValue": 200
        }
    ]
}

Parameter Summary

Parameter BarcodeWidthRangeArray consist of a group of barcode width range objects. Each object includes the maximum and minimum value of the barcode width range.

Child Parameter Name Child Parameter Summary
MinValue
Description
Defines the MinValue of the barcode width range.
Type
int
Range
[0,0x7fffffff]
MaxValue
Description
Defines the MaxValue of the barcode width range.
Type
int
Range
[0,0x7fffffff]

Default Settings

If the BarcodeWidthRangeArray is not configured in your template file, the following settings will be used as the default settings.

{
    "BarcodeWidthRangeArray ": []
}