Data Capture Context Settings
Defined in namespace Scandit.DataCapture.Core.Capture
- DataCaptureContextSettings
class DataCaptureContextSettingsAdded in version 6.7.0
Holds settings related to the data capture context.
- DataCaptureContextSettings()
DataCaptureContextSettings()Added in version 6.7.0
Creates a new settings object with the default values.
- GetProperty()
objectGetProperty(stringname)Added in version 6.7.0
Retrieves the value of a previously set property. In case the property does not exist, null is returned.
- SetProperty()
voidSetProperty(stringname,objectvalue)Added in version 6.7.0
Sets a 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()
TGetProperty<T>(stringname)Added in version 6.7.0
Retrieves the value of a previously set property. In case the property does not exist, an ArgumentException is thrown.
- TryGetProperty()
boolTryGetProperty<T>(stringname, outTresult)Added in version 6.7.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.