Need better scanning performance?
ComplementBarcodeStage
ComplementBarcodeStage complements missing parts of a barcode. In JSON, it is represented as a Stage object with "Stage": "SST_COMPLEMENT_BARCODE".
JSON Structure
Location in template:
BarcodeReaderTaskSettingOptions[i]
└── SectionArray[j] (Section object)
└── StageArray[k] (Stage object where Stage = "SST_COMPLEMENT_BARCODE")
Parent object: StageArray within BarcodeDecodingSection
Example:
{
"Stage": "SST_COMPLEMENT_BARCODE",
"BarcodeComplementModes": [
{
"Mode": "BCM_SKIP"
}
]
}
- This snippet shows a Stage object configured for barcode complement.
- To use it, add this object to the
StageArraywithin a BarcodeDecodingSection.- For the complete JSON structure, see:
Parameters
Stage
Specifies the stage type. Fixed value: SST_COMPLEMENT_BARCODE.
| Parameter Details |
|---|
| Type string |
| Required Yes |
Default Value"SST_COMPLEMENT_BARCODE" |
BarcodeComplementModes
Defines how to complement the missing parts of a barcode. See BarcodeComplementModes for details.