Barcode Pick Settings

Defined in namespace Scandit.DataCapture.Barcode.Pick.Capture

Note

Barcode Pick is still in beta and may change in future versions of Scandit Data Capture SDK.

BarcodePickSettings
class BarcodePickSettings

Added in version 6.24.0

Contains the scanning options for an BarcodePick mode.

BarcodePickSettings()
BarcodePickSettings()

Added in version 6.24.0

Constructs a new instance with default values.

GetSymbologySettings()
SymbologySettings GetSymbologySettings(Symbology symbology)

Added in version 6.24.0

Get SymbologySettings specific for the given Symbology.

EnabledSymbologies
ICollection<Symbology> EnabledSymbologies { get; }

Added in version 6.24.0

Returns the set of enabled symbologies.

EnableSymbologies()
void EnableSymbologies(ICollection<Symbology> symbologies)

Added in version 6.24.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()
void EnableSymbology(Symbology symbology, bool enabled)

Added in version 6.24.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.

SetProperty()
void SetProperty(string name, object value)

Added in version 6.24.0

Sets property to the provided value. Use this method to set properties that are not yet part of a stable API. Properties set through this method may or may not be used or change in a future release.

GetProperty()
object GetProperty(string name)

Added in version 6.24.0

Retrieves the value of a previously set property. In case the property does not exist, null is returned.

GetProperty()
T GetProperty<T>(string name)

Added in version 6.24.0

Retrieves the value of a previously set property.

In case the property does not exist, an ArgumentException is thrown.

TryGetProperty()
bool TryGetProperty<T>(string name, out T result)

Added in version 6.24.0

The non-throwing version of the method GetProperty(). It retrieves the value of a previously set property as the second passed argument and returns true. In case the property does not exist, false will be returned.

SoundEnabled
bool SoundEnabled { get;set; }

Added in version 6.24.0

Enables or disables the audio feedback. By default true.

HapticsEnabled
bool HapticsEnabled { get;set; }

Added in version 6.24.0

Enables or disables the haptic feedback. By default true.

CachingEnabled
bool CachingEnabled { get;set; }

Added in version 6.24.0

Enables or disables the caching of scanned barcodes to a specific product identifier. Once enabled, the request for product identifier won’t be made if scanned barcodes could be found in cache. By default true.

SetArucoDictionary()
void SetArucoDictionary(ArucoDictionary dictionary)

Added in version 6.24.0

Sets the ArucoDictionary to be used while scanning ArUco codes. When the symbology is enabled the dictionary ArucoDictionaryPreset.ArucoDictionaryPreset_5X5_1000 is loaded as default.