BarcodeZoneBarCountRangeArray
BarcodeZoneBarCountRangeArray defines the range of bar count of the barcode zone for barcodes searching. By default, the minimum bar count is 1 and the maximum bar count is 128.
Setting Methods
BarcodeZoneBarCountRangeArray can be set via JSON template.
As JSON Parameter
BarcodeZoneBarCountRangeArray as a JSON parameter is defined as below.
| Key Name | Key Value |
|---|---|
| BarcodeZoneBarCountRangeArray | A JSON Object array while each Object is defined as below. |
| Key Name | Key Value | Description |
|---|---|---|
| MinValue | A number from [1, 0x7fffffff] | Sets the minimum bar count. |
| MaxValue | A number from [1, 0x7fffffff] | Sets the maximum bar count. |
JSON Example
{
"BarcodeZoneBarCountRangeArray": [
{
"MinValue": 1,
"MaxValue": 128
}
]
}