Need better scanning performance?
BarcodeZoneBarCountRangeArray
Parameter BarcodeZoneBarCountRangeArray defines the range of bar count of the barcode zone for barcodes searching.
JSON Structure
Location in template:
BarcodeFormatSpecificationOptions[i]
└── BarcodeZoneBarCountRangeArray
Parent object: BarcodeFormatSpecification object
Example:
{
"BarcodeZoneBarCountRangeArray": [
{
"MinValue": 1,
"MaxValue": 8
}
]
}
- This snippet shows only the
BarcodeZoneBarCountRangeArrayparameter.- To use it, embed this parameter within a BarcodeFormatSpecification object.
- For the complete JSON structure, see:
Parameter Details
Parameter BarcodeZoneBarCountRangeArray consist of a group of barcode zone bar count range objects. Each object includes the maximum and minimum value of the barcode zone bar count range.
| Child Parameter Name | Child Parameter Summary |
|---|---|
| MinValue |
Description Defines the MinValue of the barcode zone bar count range. |
| Type int |
|
| Range [0,0x7fffffff] |
|
| MaxValue |
Description Defines the MaxValue of the barcode zone bar count range. |
| Type int |
|
| Range [0,0x7fffffff] |
Default Settings
If the BarcodeZoneBarCountRangeArray is not configured in your template file, the following settings will be used as the default settings.
{
"BarcodeZoneBarCountRangeArray": [
{
"MinValue": 1,
"MaxValue": 128
}
]
}