Barcode Tracking Settings

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

BarcodeTrackingSettings
class BarcodeTrackingSettings

Added in version 6.2.0

Create()
static BarcodeTrackingSettings Create(BarcodeTrackingScenario scenario)

Added in version 6.5.0

Creates a new barcode tracking settings instance with the provided scenario.

Check Barcode Tracking Scenarios to know which scenario is best for a given use case.

Create()
static BarcodeTrackingSettings Create()

Added in version 6.2.0

Creates a new barcode tracking settings instance. All symbologies are disabled. Make sure to enable the symbologies required by your app before applying the settings to BarcodeTracking with

BarcodeTracking.ApplySettingsAsync().

GetSymbologySettings()
SymbologySettings GetSymbologySettings(Symbology symbology)

Added in version 6.2.0

Get SymbologySettings specific for the given Symbology.

Note that modifying the returned object doesn’t automatically apply the changes to BarcodeTracking. After you made changes to the symbology settings,

call BarcodeTracking.ApplySettingsAsync()

with these BarcodeTrackingSettings to apply them.

EnabledSymbologies
ICollection<Symbology> EnabledSymbologies { get; }

Added in version 6.2.0

Returns the set of enabled symbologies.

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

Added in version 6.2.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.2.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.2.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.2.0

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

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

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