Click or drag to resize

BarcodeManager.ActionStopDecode Field

Barcode stop decode intent action.

Namespace: Com.Datalogic.Decode
Assembly: datalogic-xamarin-sdk (in datalogic-xamarin-sdk.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
VB
public const String ActionStopDecode = "com.datalogic.decode.action.STOP_DECODE"

Field Value

Type: String
Remarks
Barcode stop decode intent action. When an application sends this broadcast intent, the system stops scanning.

Example:
public int stopDecodingIntent() {
  Intent myintent = new Intent();
  myintent.setAction(ACTION_STOP_DECODE);
}

[Android Documentation]

See Also