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