Text Capture Feedback

Defined in namespace Scandit.DataCapture.Text.Feedback

TextCaptureFeedback
class TextCaptureFeedback

Added in version 6.5.0

Determines what feedback (vibration, sound) should be emitted when reading text. The feedback is specified for each TextCapture instance separately and can be changed through the feedback property by either modifying an existing instance of TextCaptureFeedback, or assigning a new one.

As of now, this class only allows to configure the feedback that gets emitted when a text is read successfully, through the Success property.

See documentation on the TextCapture.Feedback property for usage samples.

DefaultFeedback
static TextCaptureFeedback DefaultFeedback { get; }

Added in version 6.5.0

Returns a text capture feedback with default configuration:

  • default beep sound is loaded,

  • beeping for the success event is enabled,

  • vibration for the success event is enabled.

FromJson()
static TextCaptureFeedback FromJson(string jsonData)

Added in version 6.5.0

Construct a new text capture feedback with the provided JSON serialization. See Serialization for details.

Success
Feedback Success { get;set; }

Added in version 6.5.0

A feedback for a success event.