BarcodeBytesLengthRangeArray
BarcodeBytesLengthRangeArray
defines the range of barcode bytes length for barcodes searching and result filtering. It is not set by default which means there is no limitation on the barcode byte length.
Setting Methods
BarcodeBytesLengthRangeArray
can be set via JSON template.
As JSON Parameter
BarcodeBytesLengthRangeArray
as a JSON parameter is defined as below.
Key Name | Key Value |
---|---|
BarcodeBytesLengthRangeArray | 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 bytes length. |
MaxValue | A number from [0, 0x7fffffff] | Sets the maximum barcode bytes length. |
JSON Example
{
"BarcodeBytesLengthRangeArray": [
{
"MinValue": 100,
"MaxValue": 200
}
]
}