Barcode Selection Settings
Defined under the namespace Scandit.Datacapture.Barcode.Selection
- BarcodeSelectionSettings
class BarcodeSelectionSettings
Added in version 6.10.0
Holds all the barcode selection related settings, such as enabled symbologies and tap behavior. For the settings to take effect, they must be applied to a barcode selection instance using BarcodeSelection.applySettings().
- constructor()
constructor()
Added in version 6.10.0
Creates a new barcode selection settings instance. All symbologies are disabled. Make sure to enable the symbologies required by your app before applying the settings to BarcodeSelection with BarcodeSelection.applySettings().
- settingsForSymbology(symbology)
settingsForSymbology(symbology: Symbology): SymbologySettings
Added in version 6.10.0
Get SymbologySettings specific for the given Symbology.
Note that modifying the returned object doesn’t automatically apply the changes to BarcodeSelection. After you made changes to the symbology settings, call BarcodeSelection.applySettings() with these BarcodeSelectionSettings to apply them.
- codeDuplicateFilter
codeDuplicateFilter: number
Added in version 6.10.0
Determines the time interval in which codes with the same symbology/data are considered not automatically selectable again (automatic selection can happen through singleBarcodeAutoDetection). By default, when the same code (data, symbology) stays in view after just having been selected (manually or automatically) it will not be automatically selected again for 500 milliseconds. This property has no influence on manual selection by tapping. Use this property to change the interval or completely turn off duplicate filtering:
Setting this property to value smaller than zero, means that the same code will not be automatically selectable again until the selection has been stopped.
Setting this property to a value of zero means that the same code will be automatically selectable again immediately. In use cases that includes automatic selection this is likely never wanted.
Setting this property to a value larger than zero indicates the time that must pass between the same code to be automatically selected again.
- enabledSymbologies
get enabledSymbologies(): Symbology[]
Added in version 6.10.0
Returns the set of enabled symbologies.
- enableSymbologies(symbologies)
enableSymbologies(symbologies: Symbology[]):
void
Added in version 6.10.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)
enableSymbology(symbology: Symbology, enabled: boolean):
void
Added in version 6.10.0
This function provides a convenient shortcut to enabling/disabling decoding of a particular symbology without having to go through SymbologySettings.
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.
- singleBarcodeAutoDetection
singleBarcodeAutoDetection: boolean
Added in version 6.10.0
If true, when a single barcode is tracked it’s automatically selected. Defaults to false.
Note
This setting is still in beta and may not yet work reliably in all situations.
- selectionType
selectionType: BarcodeSelectionType
Added in version 6.10.0
This setting is used to define the method that BarcodeSelection will use to select barcodes. Defaults to BarcodeSelectionTapSelection.