Barcode Check Settings
Defined in library scandit_datacapture_barcode_check
- BarcodeCheckSettings
class BarcodeCheckSettings
Added in version 7.1.0
- settingsForSymbology(symbology)
SymbologySettings settingsForSymbology(Symbology symbology)
Added in version 7.1.0
Get SymbologySettings specific for the given Symbology.
Note that modifying the returned object doesn’t automatically apply the changes to BarcodeCheck. After you made changes to the symbology settings, call BarcodeCheck.applySettings() with these BarcodeCheckSettings to apply them.
- enabledSymbologies
Set<Symbology> get enabledSymbologies
Added in version 7.1.0
Returns the set of enabled symbologies.
- enableSymbologies(symbologies)
void
enableSymbologies(Set<Symbology> symbologies)Added in version 7.1.0
This function provides a convenient shortcut to enabling decoding of particular symbologies without having to go through SymbologySettings. By default, all symbologies are turned off and symbologies need to be explicitly enabled.
- enableSymbology(symbology, enabled)
void
enableSymbology(Symbology symbology, bool enabled)Added in version 7.1.0
This function provides a convenient shortcut to enabling/disabling decoding of a particular symbology without having to go through SymbologySettings.
Note
Some 1d barcode symbologies allow you to encode variable-length data. By default, the Scandit Data Capture SDK only scans barcodes in a certain length range.
If your application requires scanning of one of these symbologies, and the length is falling outside the default range, you may need to adjust the active symbol counts for the symbology in addition to enabling it.