BarcodeHeightRangeArray
BarcodeHeightRangeArray
defines the range of heights (in pixels) for barcodes searching and result filtering. It is not set by default which means there is no limitation on the barcode heights.
Setting Methods
BarcodeHeightRangeArray
can be set via JSON template.
As JSON Parameter
BarcodeHeightRangeArray
as a JSON parameter is defined as below.
Key Name | Key Value |
---|---|
BarcodeHeightRangeArray | A JSON Object array while each Object is defined as below. |
Key Name | Key Value | Description |
---|---|---|
MinValue | A number from [0, 0x7fffffff] | Sets the minimum barcode height. |
MaxValue | A number from [0, 0x7fffffff] | Sets the maximum barcode height. |
JSON Example
{
"BarcodeHeightRangeArray": [
{
"MinValue": 100,
"MaxValue": 200
}
]
}