Regarding EB Barcode Scanning APIs
Zebra strongly recommends using DataWedge for apps that require barcode scanning. While Zebra continues to support EB Barcode APIs, the intent-based interfaces of DataWedge are easier to use than EB Barcode APIs.
DataWedge facts:
- EB barcode APIs are based on EMDK barcode APIs.
- EMDK barcode APIs have the same capabilities as are currently available in DataWedge APIs.
- DataWedge intent-based APIs are easier and faster to implement than EB intent APIs.
- New features are added to DataWedge before being considered for EMDK APIs.
Using DataWedge With EB
Overview
The Barcode Module controls functionality of the device scanner. The Barcode API of Enterprise Browser 2.0 (and later) allows an app to simultaneously scan a specified number of barcodes in view of the scanner. This number is specified using the BarcodeCount
parameter, which was introduced in EB 2.0. This and other new features and properties are supported only on Android devices with EMDK version 6.8 and later installed.
If the use case involves capturing a single barcode type (for example, a pricing kiosk app) Zebra recommends using the Barcode.take(callback)
method. If the app is to decode multiple barcode types common in enterprise scenarios (for example a warehouse inventory and receiving app), Zebra recommends using the Barcode.enable(callback)
method.
Check the platform indicators in each property or method section. If developing for a device with only a camera; scanning is possible only through that camera and the number of available symbologies is limited to the most common ones, such as EAN13 and UPCA.
Other Notes
- Only foreground apps have access to scanning hardware. When an app is sent to the background, its state is saved and scanner control is automatically relinquished. When a scanner app returns to the foreground, its previous state is reapplied.
- The VC70 scanner works only if connected in SSI mode.
- The RE 2.x Scanner API and the EB 1.x Barcode API should not be used simultaneously in any Enterprise Browser application; please select one or the other.
- EMDK 6.8 (or later) is required to take full advantage of multi-barcode capabilities in this API.
Enabling the API
There are two methods of enabling the Barcode API:
- Include all 'ebapi' modules
- Include only the required API modules
For either of these methods, one or more files must be copied to the device from the /Enterprise Browser/JavaScript Files/Enterprise Browser
directory on the computer that contains the Enterprise Browser installation.
Include all API modules
To include all APIs, copy the ebapi-modules.js
file to a location accessible by the app's files and include a reference to the JavaScript file in the app's HTML. For instance, to include the modules file in the app's index.html
, copy the file to the same directory as that index.html
and add the following line to the HTML's HEAD section:
<script type="text/javascript" charset="utf-8" src="ebapi-modules.js"></script>
The code above defines the EB class within the page. Note that the path for this file is relative to the current page (
index.html
). Any page on which the modules are required must include a reference to the required .js file(s) in this fashion.
Include only the required modules
To include individual APIs, first include a reference to the ebapi.js
module in the HTML, and then the additional required API file(s). For instance, to use the Barcode API, add the following code to the HTML file(s), assuming the API files have been copied to the same directory as the HTML.
<script type="text/javascript" charset="utf-8" src="ebapi.js"></script>
<script type="text/javascript" charset="utf-8" src="eb.barcode.js"></script>
In the lines above, notice that
ebapi.js
is included first, followed byeb.barcode.js
, which is the Barcode API for Enterprise Browser. This coding is required on each HTML page whenever an individual API will be called from that page.
Methods
addConnectionListener()
If using an RS507, RS6000, or RS4000 barcode scanner, use this method to add a connection listener to receive connected or disconnected callbacks.
Parameters
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: HASH
- connectionState : STRING
The message describing the connection: Connected or Disconnected.
- connectionType : STRING
The message describes the connection type removed/attached scanner: Bluetooth_SSI, Serial_SSI etc.
- decoderType : STRING
The message describes the decode type of removed/attached scanner: ONE_DIMENSIONAL, TWO_DIMENSIONAL etc.
- deviceType : STRING
The message describes the device type of removed/attached scanner: IMAGER, CAMERA etc.
- friendlyName : STRING
The message describes the friendly name of removed/attached scanner: BLUETOOTH SCANNER,2D IMAGER,CAMERA SCANNER Disconnected.
- isDefaultScanner : STRING
The message describes wether removed/attached scanner is a default scanner: true or false.
Returns
Synchronous Return:
- Void
Platforms
- Android
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.addConnectionListener()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.addConnectionListener()
barcode_recognize(STRING imageFilePath)
Recognizes a barcode on an image. Returns a string with recognized code, or empty string if the barcode is not recognized.
Parameters
- imageFilePath : STRING
Path to the image that contains the barcode to be recognized.
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: STRING
Returns
Synchronous Return:
- STRING : String with recognized code, or empty string if the barcode is not recognized.
Platforms
- Android
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.barcode_recognize(STRING imageFilePath)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.barcode_recognize(STRING imageFilePath)
commandRemoteScanner(STRING command)
Instruct the connected RS507 scanner to perform some action.
Parameters
- command : STRING
The action the RS507 scanner should perform, can be 'Disconnect' which disconnects the Bluetooth RS507; 'unpair' which unpairs the RS507 from the device for association with another device; 'StartPaging' or 'StopPaging' which will cause the RS507 scanner to start or stop emitting a beep, to allow it to be located.
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Windows Mobile
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.commandRemoteScanner(STRING command)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.commandRemoteScanner(STRING command)
disable()
Disables the barcode scanner. This reverts the scanner to its default state and flushes any current decoder settings.
Parameters
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.disable()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.disable()
enable(HASH propertyMap)
Enabling the scanner puts it in a state where it will respond to the trigger (on devices with a hardware trigger) or will accept a command to initiate a soft scan (start method). Scanned barcodes will be available to the application through the callback provided to this method. Only one scanner on the device can be enabled at any one time, to switch between the imager and camera scanners (for example), first disable the currently enabled scanner. If a callback is not specified to this method, the scanned data is received as keystrokes. Note that it is necessary to enable the scanner on WM/CE devices prior to being able to retrieve the state of properties.
Parameters
- propertyMap : HASH Optional
Provide a set of properties to configure the scanner, for example enable specific symbologies or check digits. Valid `properties` for this parameter are the properties available to this API module. Check the property section for applicable properties. Not providing properties to this function will use the scanner's default properties, or those previously set on the Scanner instance.
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: HASH
- data : STRING
The data decoded by the scanner or imaging device.
- source : STRING
The source device and human readable decoder type of the decoded barcode or symbol.
- type : STRING
Hex value representing the decoder type.
- time : STRING
The time at which the decode occurred (hh:mm:ss)
- length : STRING
The length of the decoded barcode or symbol.
- direction : STRING
The direction the barcode was scanned, either forward, reverse or unavailable.
- isMULTIBARCODEData : BOOLEAN
Whether the Scanned Data is MULTIBARCODE decoded data or not.
- isUDIData : BOOLEAN
Whether the Scanned Data is UDI decoded data or not.
- label : STRING
Get the decoder type of the decoded barcode or symbol. Note: This is specially applicable for UDI decoding.
- UDITokenizedData : ARRAY
Array of tokenized data received after processing the UDI barcode Data. The data read from a UDI Barcode labels contain embedded key/value pairs delimited by characters defined by their UDI type. Note: This is specially applicable for UDI decoding.
- Object : HASH
- key : STRING
Get key of the token data.
- data : STRING
Get data of the token data.
- type : STRING
Get data type of the token data.
- format : STRING
Get format of the token data
- rawData : STRING
Get raw data of the token data
- MULTIBARCODETokenizedData : ARRAY
Array of scanned data received after processing the Multi barcode Data.
- Object : HASH
- data : STRING
Get data of the scanned data.
- source : STRING
The source device and human readable decoder type of the decoded barcode or symbol.
- time : STRING
Get time of the scanned data
- rawData : STRING
Get raw data of the scanned data
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.enable(HASH propertyMap)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.enable(HASH propertyMap)
enumerate()
Used to gain access to all scanner objects present on the device. Consumer devices will most likely have only a single scanner the device's camera. Enterprise-grade hardware often employs two or more scanning devices.
Parameters
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: ARRAY
- Object : SELF_INSTANCE: EB.Barcode
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows CE
- Windows Mobile
Method Access:
- Class Method: This method can only be accessed via the API class object.
EB.Barcode.enumerate()
getAllProperties()
This method will return all of object/value pairs for the property Names of the API class.
Parameters
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: HASH
- : STRING
Returns
Synchronous Return:
- HASH : Map of all available properties
- : STRING
- : STRING
Platforms
- Android
- Windows Mobile
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.getAllProperties()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.getAllProperties()
getDefault()
This method will return an object that represents the default instance of the API Class. For example Camera.getDefault will return a Camera object that represents the default camera.
Parameters
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: SELF_INSTANCE
Returns
Synchronous Return:
- SELF_INSTANCE : Default object of Module.
Platforms
- Android
- Windows Mobile
Method Access:
- Class Method: This method can only be accessed via the API class object.
EB.Barcode.getDefault()
getProperties(ARRAY arrayofNames)
This method will return a set of object/value pairs for the list of the propertyName that is passed in. The propertyNames must be a valid property of the API class.
Parameters
- arrayofNames : ARRAY
List of properties I want to know about
- Object : STRING
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: HASH
- : STRING
Returns
Synchronous Return:
- HASH : Map of properties I want to know about
- : STRING
- : STRING
Platforms
- Android
- Windows Mobile
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.getProperties(ARRAY arrayofNames)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.getProperties(ARRAY arrayofNames)
getProperty(STRING propertyName)
This method will return the value of the propertyName that is passed in. The propertyName must be a valid property of the API class.
Parameters
- propertyName : STRING
The property to return info about.
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: STRING
Returns
Synchronous Return:
- STRING : The property to return info about.
Platforms
- Android
- Windows Mobile
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.getProperty(STRING propertyName)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.getProperty(STRING propertyName)
getSupportedProperties()
Return array of properties supported by this scanner.
Parameters
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: ARRAY
- Object : STRING
Returns
Synchronous Return:
- ARRAY : Array of property names supported by this scanner.
- Object : STRING
- Object : STRING
Platforms
- Android
- Windows Mobile
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.getSupportedProperties()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.getSupportedProperties()
getautoCharacterSetPreference()
Gives the array of Character Sets provided for Decoding
Parameters
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: ARRAY
- Object : STRING
Returns
Synchronous Return:
- ARRAY : If nothing is set then default array is given ["GB2312","UTF8"].
- Object : STRING
- Object : STRING
Platforms
- Android
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.getautoCharacterSetPreference()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.getautoCharacterSetPreference()
isParamSupported(STRING propertyName)
This method is used for checking whether specified barcode property is supported or not by EMDK service which is installed in the device. It will return 'true' if the specified property is supported or else it will return 'false' for all other cases.
Parameters
- propertyName : STRING
The propertyName name should be same as barcode property name like 'code128', 'code128isbt128'.
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: BOOLEAN
Returns
Synchronous Return:
- BOOLEAN
Platforms
- Android
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.isParamSupported(STRING propertyName)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.isParamSupported(STRING propertyName)
registerBluetoothStatus()
If using an RS507 barcode scanner, use this method to register to receive connected or disconnected events.
Parameters
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: HASH
- status : STRING
The message describing the bluetooth connection: BluetoothConnected, BluetoothDisconnected or BTScanAssociationBarcode. See below for further descriptions.
Returns
Synchronous Return:
- Void
Platforms
- Windows Mobile
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.registerBluetoothStatus()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.registerBluetoothStatus()
removeConnectionListener()
If using an RS507, RS6000 or RS4000 barcode scanner, use this method to remove a connection listener to receive connected or disconnected callbacks.
Parameters
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.removeConnectionListener()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.removeConnectionListener()
resetToDefault()
Resets the scanner parameters to defaults values for the specified enable scanner.
Parameters
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.resetToDefault()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.resetToDefault()
setDefault(SELF_INSTANCE: EB.Barcode defaultInstance)
This method sets the attributes of the default object instance by passing in an object of the same class.
Parameters
- defaultInstance : SELF_INSTANCE: EB.Barcode
An instance object that is of the same class.
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows Mobile
Method Access:
- Class Method: This method can only be accessed via the API class object.
EB.Barcode.setDefault(SELF_INSTANCE: EB.Barcode defaultInstance)
setProperties(HASH propertyMap)
This method will set the values of a list of properties for the API class. The propertyName must be a valid property for the class and must also not be read only.
Parameters
- propertyMap : HASH
Map of properties I want to set
- Object : STRING
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows Mobile
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.setProperties(HASH propertyMap)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.setProperties(HASH propertyMap)
setProperty(STRING propertyName, STRING propertyValue)
This method will set the value of a property for the API class. The propertyName must be a valid property for the class and must also not be read only.
Parameters
- propertyName : STRING
The one property name that I want to set
- propertyValue : STRING
The one property value that I want to set
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows Mobile
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.setProperty(STRING propertyName, STRING propertyValue)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.setProperty(STRING propertyName, STRING propertyValue)
setautoCharacterSetPreference(ARRAY charArray)
If you have set CharacterSetSelection as AUTO, then using this method you can give an array of preferred character sets to be decoded.
Parameters
- charArray : ARRAY Optional
Provide an ARRAY of Character Sets whose barcode should be decoded and given back. Default array is ["GB2312","UTF8"]
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.setautoCharacterSetPreference(ARRAY charArray)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.setautoCharacterSetPreference(ARRAY charArray)
start()
Performs a soft trigger start, initiating a scan without pressing the hardware trigger. If the scan does not result in a decode it is necessary to perform a soft stop before another soft start.
Parameters
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.start()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.start()
stop()
Performs a soft trigger stop.
Parameters
- callback : CallBackHandler
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.stop()
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.stop()
take(HASH propertyMap)
Enable the scanner and start capturing the barcode automatically. On Symbol Technologies' devices the amount of time to scan the barcode is defined by the scanTimeout property. On Android if a barcode is found, the user can confirm barcode recognition, or continue to try to recognize the barcode. When the user confirms or cancels, the callback is called. Once the callback has been called the barcode hardware is disabled.This method will work only on scanners which support soft scan.
Parameters
- propertyMap : HASH Optional
Provide a set of properties to configure the scanner, for example enable specific symbologies or check digits. Valid `properties` for this parameter are the properties available to this API module. Check the property section for applicable properties. Not providing properties to this function will use the scanner's default properties, or those previously set on the Scanner instance.
- callback : CallBackHandler
Callback
Async Callback Returning Parameters: HASH
- barcode : STRING
The data decoded by the scanner or imaging device.
- status : STRING
Whether or not the barcode was successfully scanned, status will be 'ok' or 'cancel'
Returns
Synchronous Return:
- Void
Platforms
- Android
- Windows CE
- Windows Mobile
Method Access:
- Instance Method: This method can be accessed via an instance object of this class:
myObject.take(HASH propertyMap)
- Default Instance: This method can be accessed via the default instance object of this class.
EB.Barcode.take(HASH propertyMap)
Properties
adaptiveScanning
Type
BOOLEAN
Description
Enables or disables adaptive scanning. When set to true, the scan engine automatically toggles between wide and narrow scan angles, allowing the engine to decode barcodes in close proximity and far away (approx. 100 inches). Adaptive scanning is supported only in high-performance, long-working range scan engines such as the SE960. On devices running Android, it supports devices only with laser scanners such as the RS4000.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.adaptiveScanning
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.adaptiveScanning
Platforms
- Android
- Windows Mobile
- Zebra devices only (Laser scanners on Symbol-branded devices)
aimMode
Type
STRING
Description
Defines the aiming mode to use.
Values
Possible Values (STRING):
- Constant: EB.Barcode.AIMMODE_NONE - String: none No Aiming (Can be overridden by picklistMode).
- Constant: EB.Barcode.AIMMODE_DOT - String: dot Laser barcode readers will show a dot for aiming.
- Constant: EB.Barcode.AIMMODE_SLAB - String: slab Laser barcode readers will show a slab for aiming.
- Constant: EB.Barcode.AIMMODE_RETICLE - String: reticle Imager barcode readers will show a reticle for aiming.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.aimMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.aimMode
Platforms
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
aimType
Type
STRING
Description
Describes the type of aiming to use. Supported on Android devices with EMDK version 6.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.AIMTYPE_TRIGGER - String: trigger Standard trigger mode. Holding the trigger will start a decoding session.
- Constant: EB.Barcode.AIMTYPE_TIMED_HOLD - String: timedHold Aiming lasts for the time specified by 'timedAimDuration' before decoding. The opportunity to scan will last until the barcode is decoded or scanTimeout occurs.
- Constant: EB.Barcode.AIMTYPE_TIMED_RELEASE - String: timedRelease Aiming lasts until trigger is released. If the timedAimDuration has expired when the trigger is released then a decode session is started until a barcode is decoded or for the remaining time equal to the scanTimeout value.
- Constant: EB.Barcode.AIMTYPE_PRESENTATION - String: Provided to support kiosk devices. The scanner illuminates when movement is detected in the range of the scanner. To use this mode,
SceneDetectionQualifier
property must be set to true. The device must be equipped with a sensor to detect movement. In devices that come with presentation mode pre-enabled in the scanner driver, the aimType cannot be modified. - Constant: EB.Barcode.AIMTYPE_PRESS_AND_RELEASE - String: pressAndRelease Scan will continue after the trigger is released until scanTimeout occurs.
- Constant: EB.Barcode.AIMTYPE_PRESS_AND_SUSTAIN - String: pressAndSustain Scanner will continue to decode session until the beamTimer is expired, barcode is decoded or cancels the read. It avoids unexpected cancellations of a read by pressing the trigger button of the device. If the trigger button of the device is pressed while the beam is ON, it has no effect.
- Constant: EB.Barcode.AIMTYPE_CONTINUOUS_READ - String: continuousRead Once the trigger is pulled barcodes will continue to be scanned as long as the trigger is held, enabling rapid scanning, to be used in conjunction with sameSymbolTimeout and differentSymbolTimeout. This value is ignored if viewfinderMode is set to 'dynamicReticle'
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.aimType
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.aimType
Platforms
- Android
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
aimingPattern
Type
STRING
Description
Describes the aiming pattern to be turned ON or OFF. It supports on Android with EMDK version 6.6 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.AIMINGPATTERN_OFF - String: OFF Aiming pattern is turned off.
- Constant: EB.Barcode.AIMINGPATTERN_ON - String: ON Aiming pattern is turned on.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.aimingPattern
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.aimingPattern
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
allDecoders
Type
BOOLEAN
Description
When set to true, the barcode scanner will read all barcode types that the scanner is capable of reading. When set to false, the barcode scanner will not be able to decode any symbologies, this is most useful if you want to set the scanner to a default state before only enabling your required symbologies. The fewer symbologies that are enabled the faster the decoding performance of the scanning engine will be. This property will return true only if all supported symbologies by the scanner are enabled, if only a subset of supported symbologies are enabled then false will be returned. Note that some decoders will not be enabled as some symbologies use the same systems to encode data, making it impossible to differentiate between them. For example: "canpostal" and "auspostal" both use a 4-state system, so devices will only enable either "canpostal" OR "auspostal" when "alldecoders" is enabled. Note that other symbologies also share the 4-state system.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.allDecoders
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.allDecoders
Platforms
- Android (scanners on Symbol-branded devices)
- Windows CE
- Windows Mobile
ausPostal
Type
BOOLEAN
Description
Enables or disables the symbology for Australian Postal barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.ausPostal
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.ausPostal
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
autoCharacterSetFailureOption
Type
STRING
Description
Describes the available Character Set Failure Option. This property allows you to set one type at a time. It supports on Android with EMDK version 6.10 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.NONE - String: AUTO Set Auto Character Set Failure Option as NONE
- Constant: EB.Barcode.UTF_8 - String: UTF8 Set Auto Character Set Failure Option as UTF8
- Constant: EB.Barcode.ISO_8859_1 - String: ISO88591 Set Auto Character Set Failure Option as ISO88591
- Constant: EB.Barcode.Shift_JIS - String: SHIFTJIS Set Auto Character Set Failure Option as SHIFTJIS
- Constant: EB.Barcode.GB18030 - String: GB18030 Set Auto Character Set Failure Option as GB18030
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.autoCharacterSetFailureOption
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.autoCharacterSetFailureOption
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
autoEnter
Type
BOOLEAN
Description
When true, automatically appends the character code for 'enter' to the end of any barcodes scanned. This is useful if you want to submit forms following a scan without further interaction. This property will only take effect if you have not specified a callback to the enable method. AutoEnter and AutoTab are mutually exclusive properties.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.autoEnter
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.autoEnter
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
autoTab
Type
BOOLEAN
Description
When true, automatically appends the tab character to the end of any barcodes scanned. This is useful if you are populating a form and want to jump to the next field in the form without further interaction. This property will only take effect if you have not specified a callback to the enable method. AutoTab and AutoEnter are mutually exclusive properties.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.autoTab
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.autoTab
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
aztec
Type
BOOLEAN
Description
Enables or disables the symbology for Aztec barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.aztec
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.aztec
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
barcodeCount
Type
INTEGER
Description
Number of barcodes to decode. Count should be 2 to 10. Supported on Android devices with EMDK version 6.8 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.barcodeCount
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.barcodeCount
Platforms
- Android
- Zebra devices only (scanners on Symbol Technologies' devices)
barcodeDataFormat
Type
STRING
Description
Specifies the format in which the barcode data is returned, binary data is returned in Data URI format with the appropriate mime type. This parameter is designed to be used primarily with image based symbologies (eg. Signature). Binary data will not be output as keystrokes, you must set a decode callback in order to receive scanned data.
Values
Possible Values (STRING):
- Constant: EB.Barcode.FORMAT_BINARY - String: binary Scanned data will be returned in Data URI format.
- Constant: EB.Barcode.FORMAT_TEXT - String: text Scanned data will be returned in Text format.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.barcodeDataFormat
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.barcodeDataFormat
Platforms
- Windows Mobile
- Zebra devices only (Camera / Imager scanners on Symbol-branded devices)
beamWidth
Type
STRING
Description
Specifies the width of the laser beam. All devices will support normal beam widths but other widths may not be supported on your device.
Values
Possible Values (STRING):
- Constant: EB.Barcode.BEAM_NORMAL - String: normal Laser beam width is normal.
- Constant: EB.Barcode.BEAM_WIDE - String: wide Laser beam width is wide.
- Constant: EB.Barcode.BEAM_NARROW - String: narrow Laser beam width is narrow.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.beamWidth
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.beamWidth
Platforms
- Windows Mobile
- Zebra devices only (Laser scanners on Symbol-branded devices)
bidirectionalRedundancy
Type
BOOLEAN
Description
Enables or disables bidirectional redundancy.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.bidirectionalRedundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.bidirectionalRedundancy
Platforms
- Windows Mobile
- Zebra devices only (Laser scanners on Symbol-branded devices)
canPostal
Type
BOOLEAN
Description
Enables or disables the symbology for Canadian Postal barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.canPostal
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.canPostal
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
characterSetSelection
Type
STRING
Description
Describes the available Character Sets for this particula Scanner. This property allows you to set one type at a time. It supports on Android with EMDK version 6.10 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.AUTO - String: AUTO Set Character Selection as AUTO
- Constant: EB.Barcode.UTF_8 - String: UTF8 Set Character Selection as UTF8
- Constant: EB.Barcode.ISO_8859_1 - String: ISO88591 Set Character Selection as ISO88591
- Constant: EB.Barcode.Shift_JIS - String: SHIFTJIS Set Character Selection as SHIFTJIS
- Constant: EB.Barcode.GB18030 - String: GB18030 Set Character Selection as GB18030
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.characterSetSelection
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.characterSetSelection
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
chinese2of5
Type
BOOLEAN
Description
Enables or disables the symbology for Chinese 2of5 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.chinese2of5
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.chinese2of5
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
codabar
Type
BOOLEAN
Description
Enables or disables the symbology for Codabar barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.codabar
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.codabar
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
codabarClsiEditing
Type
BOOLEAN
Description
Enables Codabar CLSi formatting when set to true.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.codabarClsiEditing
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.codabarClsiEditing
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
codabarMaxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a Codabar barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.codabarMaxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.codabarMaxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
codabarMinLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a Codabar barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.codabarMinLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.codabarMinLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
codabarNotisEditing
Type
BOOLEAN
Description
Enables Codabar NotisEditing formatting when set to true.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.codabarNotisEditing
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.codabarNotisEditing
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
codabarRedundancy
Type
BOOLEAN
Description
Sets the Codabar Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.codabarRedundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.codabarRedundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code11
Type
BOOLEAN
Description
Enables or disables the symbology for Code11 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code11
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code11
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code11checkDigitCount
Type
STRING
Description
Specifies whether to verify 0, 1 or 2 check digits.
Values
Possible Values (STRING):
- Constant: EB.Barcode.CODE11_CHECKDIGIT_NONE - String: none Scanning engine will verify no Code 11 check digits.
- Constant: EB.Barcode.CODE11_CHECKDIGIT_ONE - String: one Scanning engine will verify one Code 11 check digit.
- Constant: EB.Barcode.CODE11_CHECKDIGIT_TWO - String: two Scanning engine will verify two Code 11 check digits.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code11checkDigitCount
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code11checkDigitCount
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code11maxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a Code 11 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code11maxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code11maxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code11minLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a Code 11 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code11minLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code11minLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code11redundancy
Type
BOOLEAN
Description
Sets the Code 11 Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code11redundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code11redundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code11reportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned Code 11 barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code11reportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code11reportCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128
Type
BOOLEAN
Description
Enables or disables the symbology for Code128 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128checkIsBtTable
Type
BOOLEAN
Description
When true, decodes concatenated Code128 output only if the pair belongs to one of the commonly concatenated pairs as defined by the standard.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128checkIsBtTable
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128checkIsBtTable
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128ean128
Type
BOOLEAN
Description
When true, barcodes with the EAN128 subtype property set will be read.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128ean128
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128ean128
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128isbt128
Type
BOOLEAN
Description
When true, barcodes with the isbt128 subtype property set will be read.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128isbt128
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128isbt128
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128isbt128ConcatMode
Type
STRING
Description
Sets the Code128 ISBT concatenation mode property. This feature allows a pair of barcodes which meet certain criteria defined in the ISBT128 spec to be reported as a single barcode. This parameter describes the different concatenation modes available for ISBT128.
Values
Possible Values (STRING):
- Constant: EB.Barcode.CODE128ISBT_NEVER - String: never Will ignore the barcode pair and only output decode data for one of the barcodes.
- Constant: EB.Barcode.CODE128ISBT_ALWAYS - String: always Will not decode if both barcodes are not present or if one of them can not be decoded.
- Constant: EB.Barcode.CODE128ISBT_AUTO - String: auto Auto-Discriminate.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128isbt128ConcatMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128isbt128ConcatMode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128maxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a Code 128 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128maxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128maxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128minLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a Code 128 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128minLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128minLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128other128
Type
BOOLEAN
Description
Sets the other 128 property which enables the non EAN and non ISBT 128 subtype.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128other128
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128other128
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128redundancy
Type
BOOLEAN
Description
Sets the Code 128 Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128redundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128redundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code128securityLevel
Type
INTEGER
Description
Sets the Code 128 security level and accepts a value between 0 and 3 inclusive. 0: Allows the scanner to operate in its most aggressive state, while providing sufficient security in decoding most 'in-spec' barcodes. 1: Eliminates most mis-decodes. 2: Select this option if security level 1 fails to eliminate mis-decodes. 3: Select this option if security level 1 and 2 fail to eliminate mis-decodes. Be advised that selecting level 3 is an extreme measure against mis-decoding and will significantly impair the decoding ability of the scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code128securityLevel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code128securityLevel
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39
Type
BOOLEAN
Description
Enables or disables the symbology for Code 39 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39code32Prefix
Type
BOOLEAN
Description
Enables reporting of the Code32 prefix when a Code39 barcode is converted.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39code32Prefix
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39code32Prefix
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39convertToCode32
Type
BOOLEAN
Description
Enables conversion from Code39 to Code 32 barcodes, when set the decoded barcode is converted to Code 32.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39convertToCode32
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39convertToCode32
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39fullAscii
Type
BOOLEAN
Description
Enables full ASCII conversion of Code 39 barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39fullAscii
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39fullAscii
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39maxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a Code 39 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39maxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39maxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39minLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a Code 39 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39minLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39minLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39redundancy
Type
BOOLEAN
Description
Sets the Code 39 Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39redundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39redundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39reportCheckDigit
Type
BOOLEAN
Description
Enables reporting of the Code 39 check digit when a Code 39 barcode is scanned.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39reportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39reportCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39securityLevel
Type
INTEGER
Description
Sets the Code 128 security level and accepts a value between 0 and 3 inclusive. 0: This setting allows the scanner to operate in its most aggressive state, while providing sufficient security in decoding most 'in-spec' barcodes. 1: This setting eliminates most mis-decodes. 2: Select this option if security level 1 fails to eliminate mis-decodes. 3: Select this option if security level 1 and 2 fail to eliminate mis-decodes. Be advised that selecting level 3 is an extreme measure against mis-decoding and will significantly impair the decoding ability of the scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39securityLevel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39securityLevel
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code39verifyCheckDigit
Type
BOOLEAN
Description
Turns on verification of the Code 39 check digit.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code39verifyCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code39verifyCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code93
Type
BOOLEAN
Description
Enables or disables the symbology for Code 93 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code93
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code93
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code93maxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a Code 93 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code93maxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code93maxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code93minLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a Code 93 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code93minLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code93minLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
code93redundancy
Type
BOOLEAN
Description
Sets the Code 93 Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.code93redundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.code93redundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
codeIdType
Type
STRING
Description
Allows the code type of a scanned barcode and select a code ID character to insert between the prefix and the decoded symbol. This is useful when the reader is decoding more than one code type. It supports on Android with EMDK version 6.6 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.CODEIDTYPE_NONE - String: NONE Disable the prefix.
- Constant: EB.Barcode.CODEIDTYPE_AIM - String: AIM Enables the standards based three character prefix.
- Constant: EB.Barcode.CODEIDTYPE_SYMBOL - String: SYMBOL Enables the defined single character prefix.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.codeIdType
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.codeIdType
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
compositeAb
Type
BOOLEAN
Description
Enables or disables the symbology for Composite AB barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.compositeAb
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.compositeAb
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
compositeAbUccLinkMode
Type
STRING
Description
Describes whether UCC link mode is enabled.
Values
Possible Values (STRING):
- Constant: EB.Barcode.UCC_NEVER - String: never Link flag is ignored.
- Constant: EB.Barcode.UCC_ALWAYS - String: always Composite AB barcodes are always linked.
- Constant: EB.Barcode.UCC_AUTO - String: auto Auto-discriminate whether Composite AB barcodes are linked.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.compositeAbUccLinkMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.compositeAbUccLinkMode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
compositeAbUseUpcPreambleCheckDigitRules
Type
BOOLEAN
Description
This setting causes the UPC rules specified in the UPC EAN parameters to be used when reporting composite decode data.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.compositeAbUseUpcPreambleCheckDigitRules
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.compositeAbUseUpcPreambleCheckDigitRules
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
compositeC
Type
BOOLEAN
Description
Enables or disables the symbology for Composite C barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.compositeC
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.compositeC
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
connectionIdleTime
Type
INTEGER
Description
Specifies the time, in seconds, that an external scanner will be allowed to remain idle before the connection between the terminal and the scanner is severed to conserve power. The value should be in mutilple of 5. This is currently applicable to Bluetooth scanners only. For Android L and later the valid range start from 0. When time is set to 0, BT scanner will remain connected with terminal. It supports on Android with EMDK version 6.6 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.connectionIdleTime
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.connectionIdleTime
Platforms
- Android
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
connectionIdleTimeout
Type
INTEGER
Description
Specifies the time, in seconds, that an external scanner will be allowed to remain idle before the connection is terminated to conserve power.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.connectionIdleTimeout
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.connectionIdleTimeout
Platforms
- Windows Mobile
- Zebra devices only (Bluetooth scanners on Symbol-branded devices)
d2of5
Type
BOOLEAN
Description
Enables or disables the symbology for D2of5 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.d2of5
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.d2of5
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
d2of5maxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a D2of5 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.d2of5maxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.d2of5maxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
d2of5minLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a D2of5 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.d2of5minLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.d2of5minLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
d2of5redundancy
Type
BOOLEAN
Description
Sets the D2of5 Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.d2of5redundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.d2of5redundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
dataBufferSize
Type
INTEGER
Description
Specifies the number of bytes allocated to receive the scanned barcode. This parameter is designed to be used primarily with image based symbologies and should not be modified unless absolutely necessary (eg. Signature).
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.dataBufferSize
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.dataBufferSize
Platforms
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
datamatrix
Type
BOOLEAN
Description
Enables or disables the symbology for Datamatrix barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.datamatrix
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.datamatrix
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
dbpMode
Type
STRING
Description
Describes the type of Digital Bar Pulse (DBP) being produced by the scan engine.
Values
Possible Values (STRING):
- Constant: EB.Barcode.DBP_NORMAL - String: normal Tells the scan engine to produce normal DBP.
- Constant: EB.Barcode.DBP_COMPOSITE - String: composite Tells the scan engine to produce composite DBP, which is 2 different sets of DBP data multiplexed together for better decode performance. In order to enable this mode it must be supported by the scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.dbpMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.dbpMode
Platforms
- Windows Mobile
- Zebra devices only (Laser scanners on Symbol-branded devices)
decodeDuration
Type
INTEGER
Description
The duration of the device beeper when a barcode is scanned, in milliseconds.
Params
Default: 250
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeDuration
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeDuration
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
decodeFrequency
Type
INTEGER
Description
The frequency of the device beeper when a barcode is successfully decoded. This should be within the range of the beeper but the API will accept values in the range 0 to 65535.
Params
Default: 3000
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeFrequency
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeFrequency
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
decodeLEDFeedback
Type
BOOLEAN
Description
Enable and Disable Decode LED notification. When set to true, The Decode LED Notification will glow RED on trigger press and glow Green when the scanner successfully decodes a barcode.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeLEDFeedback
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeLEDFeedback
Platforms
- Android
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
decodeLEDFeedbackMode
Type
STRING
Description
Specifies the Decode LED Notification Mode on the host device and remote scanner. This Barcode Property is only applicable for external scanner. It supports on Android with EMDK version 6.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.LEDMODE_BOTH - String: both LED Notification is given by both Device and the remote scanner.
- Constant: EB.Barcode.LEDMODE_DISABLE - String: disable LED Notification is disabled on both Device and the remote scanner.
- Constant: EB.Barcode.LEDMODE_LOCAL - String: local LED Notification is given by the Device.
- Constant: EB.Barcode.LEDMODE_REMOTE - String: remote LED Notification is given by the External Scanner like RS507 BT Scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeLEDFeedbackMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeLEDFeedbackMode
Platforms
- Android
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
decodeLEDTime
Type
INTEGER
Description
Maximum time in milliseconds that the Decode LED notification will glow a green light when the scanner successfully decodes a barcode. The value is specified in the range 0 to 1000 in milliseconds.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeLEDTime
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeLEDTime
Platforms
- Android
- Zebra devices only (Symbol-branded Bluetooth barcode scanners, model RS507)
decodeScreenNotification
Type
BOOLEAN
Description
When true, displays a screen overlay as a notification on a successful decode. Supported on Android devices with EMDK version 7.2 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeScreenNotification
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeScreenNotification
Platforms
- Android
- Zebra devices only (not all scan engines support all symbologies/symbology properties)
decodeScreenNotificationTime
Type
INTEGER
Description
Used to specify length of time (in milliseconds) to display the screen overlay upon successful decode. Supported on Android devices with EMDK version 7.2 and later.
Sets the length of time (in milliseconds) to display the screen overlay upon successful decode. The value is specified in the range 0 to 1000 in milliseconds.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeScreenNotificationTime
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeScreenNotificationTime
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
decodeScreenTranslucencyLevel
Type
INTEGER
Description
Sets the translucency percentage of the decode screen notification overlay from 20 to 50 with a step of 5. Supported on Android devices with EMDK version 7.2 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeScreenTranslucencyLevel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeScreenTranslucencyLevel
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
decodeSound
Type
STRING
Description
Path to a local wave file to be played when the scanner successfully decodes a barcode. The wave file must reside on the device. This will override the existing scanner beeper settings.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeSound
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeSound
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
decodeVolume
Type
INTEGER
Description
The volume of the device beeper when a barcode is scanned. Volume specified using 0 to 5, with 5 being the loudest. The value of 0 is device dependent, some Windows Mobile / CE devices interpret this as the quietest volume; if you wish to completely disable the beeper on scan please set decodeSound to an empty or invalid sound file.
Params
Default: 5
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.decodeVolume
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.decodeVolume
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
differentSymbolTimeout
Type
INTEGER
Description
When the aimType:continuousRead property is applied this value defines the interval between which different barcodes can be scanned. The value is specified in milliseconds, use 0 to indicate no interval between successive reads. Use this setting to allow time for the operator to re-aim the device between successive scans. It supports on Android with EMDK version 6.3 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.differentSymbolTimeout
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.differentSymbolTimeout
Platforms
- Android
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
digimarcDecoding
Type
BOOLEAN
Description
Enables or disables the Digimarc decoding.
Params
Default: false
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.digimarcDecoding
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.digimarcDecoding
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
disableScannerDuringNavigate
Type
BOOLEAN
Description
By default if you have enabled the Scanner on a page, through either JavaScript or Ruby and navigate to a new page the Scanner will automatically disable. To override this behavior you can set this option to false and once enabled the Scanner will remain so in the foreground application until you disable it.
Params
Default: true
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.disableScannerDuringNavigate
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.disableScannerDuringNavigate
Platforms
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
disconnectBtOnDisable
Type
BOOLEAN
Description
Forces the scanner to disconnect from the terminal when it is 'disabled'. Since the scanner is disabled when you navigate to a new page, set this value to false if you want to maintain the bluetooth connection to your remote scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.disconnectBtOnDisable
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.disconnectBtOnDisable
Platforms
- Windows Mobile
- Zebra devices only (Bluetooth scanners on Symbol-branded devices)
disconnectOnExit
Type
BOOLEAN
Description
It indicates to the scan driver to disconnect any existing connection between an external Bluetooth scanner and the terminal. When a BT scanner establishes connection to the terminal it will not automatically disconnect when the scanner is disabled by calling Scanner.disable(). If this parameter is set the scanning driver will force the scanner to disconnect. Please Note that If this parameter is set to true, it will not fire the DISCONNECTED state.It supports on Android with EMDK version 6.6 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.disconnectOnExit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.disconnectOnExit
Platforms
- Android
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners)
displayBtAddressBarcodeOnEnable
Type
BOOLEAN
Description
If set to true the bluetooth address will be displayed as a barcode on the screen during the pairing process, initiated by calling 'enable' on a bluetooth scanner. Not all devices support this functionality. Note you must specify this parameter before or within the call to 'enable'.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.displayBtAddressBarcodeOnEnable
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.displayBtAddressBarcodeOnEnable
Platforms
- Windows Mobile
- Zebra devices only (Bluetooth scanners on Symbol-branded devices)
dotCode
Type
BOOLEAN
Description
Provides access to parameters available for the dotCode decoder. Supported on Android devices with EMDK version 7.2 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.dotCode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.dotCode
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
dotCodeInverse
Type
STRING
Description
Used to set parameter inverse. The supported values are Enabled, Disabled and Auto (default). Supported on Android devices with EMDK version 7.2 and later.
Values
Possible Values (STRING):
Constant: EB.Barcode.DOTCODEINVERSE_AUTO - String: "auto" allows decoding of positive and inverse dotcode symbologies.
Constant: EB.Barcode.DOTCODEINVERSE_DISABLED - String: "disabled" turns off decoding of inverse dotcode symbologies.
Constant: EB.Barcode.DOTCODEINVERSE_ENABLED - String: "enabled" allows decoding of only inverse dotcode symbologies.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.dotCodeInverse
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.dotCodeInverse
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
dotCodeMirror
Type
STRING
Description
Used to set the dotCodeMirror parameter. Supported values are Enabled, Disabled and Auto (default). Supported on Android devices with EMDK version 7.2 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.DOTCODEMIRROR_AUTO - String: "auto" allows decoding of positive and mirror dotcode symbologies (default).
- Constant: EB.Barcode.DOTCODEMIRROR_DISABLED - String: "disabled" turns off decoding of mirror dotcode symbologies.
- Constant: EB.Barcode.DOTCODEMIRROR_ENABLED - String: "enabled" allows decoding of only mirror dotcode symbologies.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.dotCodeMirror
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.dotCodeMirror
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
dpmMode
Type
BOOLEAN
Description
Allows Direct Part Marking (DPM) barcodes to be read When true, but may adversely affect overall decoding performance. DPM is a way of stamping barcodes directly on physical objects and is only available on DPM terminals.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.dpmMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.dpmMode
Platforms
- Windows Mobile
- Zebra devices only (Imager / Camera scanners on Symbol-branded devices. The scanning engine must support DPM barcodes.)
dutchPostal
Type
BOOLEAN
Description
Enables or disables the symbology for Dutch Postal barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.dutchPostal
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.dutchPostal
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
ean13
Type
BOOLEAN
Description
Enables or disables the symbology for EAN 13 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.ean13
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.ean13
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
ean8
Type
BOOLEAN
Description
Enables or disables the symbology for EAN 8 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.ean8
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.ean8
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
ean8convertToEan13
Type
BOOLEAN
Description
When true, EAN 8 barcodes will be converted to EAN 13 and EAN 13 parameters used.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.ean8convertToEan13
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.ean8convertToEan13
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
enableGS1
Type
BOOLEAN
Description
Enable or disable the GS1 decoding of UDI. It supports on Android with EMDK version 6.6 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.enableGS1
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.enableGS1
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
enableHIBCC
Type
BOOLEAN
Description
Enable or disable the HIBCC decoding of UDI. It supports on Android with EMDK version 6.6 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.enableHIBCC
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.enableHIBCC
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
enableICCBBA
Type
BOOLEAN
Description
Enable or disable the ICCBBA decoding of UDI. It supports on Android with EMDK version 6.6 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.enableICCBBA
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.enableICCBBA
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
enableTimeout
Type
INTEGER
Description
Configures the time (in seconds) allowed to pair with the external bluetooth scanner after calling the 'enable()' method. You must specify this parameter before calling 'enable' to change the default.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.enableTimeout
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.enableTimeout
Platforms
- Windows Mobile
- Zebra devices only (Bluetooth scanners on Symbol-branded devices)
focusMode
Type
STRING
Description
Sets the focus mode in use.
Values
Possible Values (STRING):
- Constant: EB.Barcode.FOCUS_FIXED - String: fixed Use fixed focus.
- Constant: EB.Barcode.FOCUS_AUTO - String: auto Use auto focus.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.focusMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.focusMode
Platforms
- Windows Mobile
- Zebra devices only (Imager / Camera scanners on Symbol-branded devices)
friendlyName
Type
STRING Read Only
Description
Returns the friendly name associated with the scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.friendlyName
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.friendlyName
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
gridMatrix
Type
BOOLEAN
Description
Provides access to parameters available for the gridmatrix decoder. Supported on Android devices with EMDK version 7.3 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gridMatrix
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gridMatrix
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
gridMatrixInverse
Type
STRING
Description
Uses to set parameter inverse. Supported values are Enabled, Disabled and Auto (default). Supported on Android devices with EMDK version 7.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.GRIDMATRIXINVERSE_AUTO - String: "auto" allows decoding of both positive and inverse GridMatrix symbologies.
- Constant: EB.Barcode.GRIDMATRIXINVERSE_DISABLED - String: "disabled" turns off decoding of inverse GridMatrix symbologies.
- Constant: EB.Barcode.GRIDMATRIXINVERSE_ENABLED - String: "enabled" allows decoding of only inverse GridMatrix symbologies.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gridMatrixInverse
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gridMatrixInverse
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
gridMatrixMirror
Type
STRING
Description
Used to set parameter mirror. Supported values are Enabled, Disabled and Auto (default). Supported on Android devices with EMDK version 7.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.GRIDMATRIXMIRROR_AUTO - String: "auto" allows decoding of both positive and mirror GridMatrix symbologies.
- Constant: EB.Barcode.GRIDMATRIXMIRROR_DISABLED - String: "disabled" turns off decoding of mirror GridMatrix symbologies.
- Constant: EB.Barcode.GRIDMATRIXMIRROR_ENABLED - String: "enabled" allows decoding of only mirror GridMatrix symbologies.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gridMatrixMirror
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gridMatrixMirror
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
gs1Datamatrix
Type
BOOLEAN
Description
Provides access to parameters available for the Gs1Datamatrix decoder. Supported on Android devices with EMDK version 7.0 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gs1Datamatrix
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gs1Datamatrix
Platforms
- Android
- Zebra devices only (not all scanning engines support all symbologies or all symbology properties)
gs1LimitedSecurityLevel
Type
STRING
Description
Specifies the Security level addition of GS1 DataBar lim decoder. Increasing the level of security may result in reduced aggressiveness in scanning, so choose only that level of security necessary. It supports on Android with EMDK version 6.6 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.LEVEL_1 - String: LEVEL_1 No clear margin required. This complies with the original GS1 standard, yet might result in erroneous decoding of the DataBar Limited barcode when scanning some UPC symbols that start with digits "9" and "7".
- Constant: EB.Barcode.LEVEL_2 - String: LEVEL_2 Automatic risk detection. This level of security may result in erroneous decoding of DataBar Limited barcodes when scanning some UPC symbols.
- Constant: EB.Barcode.LEVEL_3 - String: LEVEL_3 Security level reflects newly proposed GS1 standard that requires a 5 times trailing clear margin.
- Constant: EB.Barcode.LEVEL_4 - String: LEVEL_4 Security level extends beyond the standard required by GS1. This level of security requires a 5 times leading and trailing clear margin.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gs1LimitedSecurityLevel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gs1LimitedSecurityLevel
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
gs1QrCode
Type
BOOLEAN
Description
Provides access to parameters available for the Gs1QrCode decoder. Supported on Android devices with EMDK version 7.0 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gs1QrCode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gs1QrCode
Platforms
- Android
- Zebra devices only (not all scanning engines support all symbologies or all symbology properties)
gs1dataBar
Type
BOOLEAN
Description
Enables or disables the symbology for GS1 DataBar barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance. This symbology was previously known as rss.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gs1dataBar
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gs1dataBar
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
gs1dataBarExpanded
Type
BOOLEAN
Description
Enables or disables the symbology for GS1 Databar Expanded barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance. This symbology was previously known as rssExp.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gs1dataBarExpanded
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gs1dataBarExpanded
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
gs1dataBarLimited
Type
BOOLEAN
Description
Enables or disables the symbology for GS1 Databar Limited barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance. This symbology was previously known as rssLim.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.gs1dataBarLimited
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.gs1dataBarLimited
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
hanXin
Type
BOOLEAN
Description
Enables or disables the symbology for the HanXin decoder. It supports on Android with EMDK version 6.6 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.hanXin
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.hanXin
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
hanXinInverse
Type
STRING
Description
This property allows the user to select decoding on inverse HanXin barcodes. It supports on Android with EMDK version 6.6 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.HANXININVERSE_AUTO - String: AUTO It allows decoding of both positive as well as inverse HanXin symbologies.
- Constant: EB.Barcode.HANXININVERSE_DISABLED - String: DISABLED It disables decoding of inverse HanXin symbologies.
- Constant: EB.Barcode.HANXININVERSE_ENABLED - String: ENABLED it enables decoding of only inverse HanXin symbologies.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.hanXinInverse
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.hanXinInverse
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
hapticFeedback
Type
BOOLEAN
Description
Controls the haptic feedback on decode. This means that if this is set to true, then the device will vibrate when a decode occurs.
Params
Default: true
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.hapticFeedback
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.hapticFeedback
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
i2of5
Type
BOOLEAN
Description
Enables or disables the symbology for I2of5 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
i2of5convertToEan13
Type
BOOLEAN
Description
When true, EAN 8 barcodes will be converted to EAN 13 and EAN 13 parameters used.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5convertToEan13
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5convertToEan13
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
i2of5febraban
Type
BOOLEAN
Description
When true, inserts special check characters in the transmitted data stream of Interleaved 2 of 5 barcodes which are of length 14 and meet specific Febraban criteria.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5febraban
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5febraban
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
i2of5maxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a I2of5 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5maxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5maxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
i2of5minLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a I2of5 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5minLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5minLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
i2of5reducedQuietZone
Type
BOOLEAN
Description
Flag to Enable or Disable decoding of I2of5 barcodes with reduced quiet zones. If you enable, select a OneDQuietZoneLevel to set the effort level.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5reducedQuietZone
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5reducedQuietZone
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
i2of5redundancy
Type
BOOLEAN
Description
Sets the I2of5 Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5redundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5redundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
i2of5reportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned I2of5 barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5reportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5reportCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
i2of5verifyCheckDigit
Type
STRING
Description
Enables the verification of the I2of5 check digit.
Values
Possible Values (STRING):
- Constant: EB.Barcode.I2OF5_VERIFY_NONE - String: none Disables verification of the check digit.
- Constant: EB.Barcode.I2OF5_VERIFY_USS - String: uss Enables the USS format for the check digit.
- Constant: EB.Barcode.I2OF5_VERIFY_OPCC - String: opcc Enables the OPCC format for the check digit.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.i2of5verifyCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.i2of5verifyCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
illuminationBrightness
Type
STRING
Description
Controls the illumination brightness (intensity) of the imager during the scanning session. Supported value range is 1 (dimmest) to 10 (brightest, default) in steps of 1.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.illuminationBrightness
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.illuminationBrightness
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Imager / Camera scanners on Symbol-branded devices)
illuminationMode
Type
STRING
Description
Selects the illumination mode to use.
Values
Possible Values (STRING):
- Constant: EB.Barcode.ILLUMINATION_AUTO - String: auto Auto-exposure algorithms will decide whether illumination is required. Not currently supported on Android.
- Constant: EB.Barcode.ILLUMINATION_ALWAYS_ON - String: alwaysOn External illumination is always on.
- Constant: EB.Barcode.ILLUMINATION_ALWAYS_OFF - String: alwaysOff External illumination is always off.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.illuminationMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.illuminationMode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Imager / Camera scanners on Symbol-branded devices)
instantReporting
Type
BOOLEAN
Description
Enables/disables instantaneous reporting of unique barcodes. Enabling this parameter ignores the value of multiBarcodeParams.barcodeCount
param and reports the scanned data to the user instantaneously, without waiting to end the scanning session. Supported on Android devices with EMDK version 7.4 and later.
Params
Default: false
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.instantReporting
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.instantReporting
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
Description
• Default Instance: This property can be accessed via the default instance object of this class. o EB.Barcode.instantReporting Platforms • Android • Zebra Devices Only (scanners on Symbol-branded devices)
invalidDecodeFrequency
Type
INTEGER
Description
The frequency of the device beeper when a barcode is scanned but not successfully decoded. This should be within the range of the beeper but the API will accept values in the range 0 to 65535.
Params
Default: 2500
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.invalidDecodeFrequency
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.invalidDecodeFrequency
Platforms
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
invalidDecodeSound
Type
STRING
Description
Path to a local wave file to be played when a barcode is scanned but not successfully decoded. This setting overrides the scanner beeper.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.invalidDecodeSound
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.invalidDecodeSound
Platforms
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
inverse1dMode
Type
STRING
Description
Allows the user to select inverse 1D barcodes for decoding.
Values
Possible Values (STRING):
- Constant: EB.Barcode.INVERSE_ENABLED - String: enabled Inverse 1D symbology decoding is enabled.
- Constant: EB.Barcode.INVERSE_DISABLED - String: disabled Inverse 1D symbology decoding is disabled.
- Constant: EB.Barcode.INVERSE_AUTO - String: auto Allows decoding of both positive and inverse 1D symbologies.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.inverse1dMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.inverse1dMode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices. The scanning engine must support inverse barcodes)
japPostal
Type
BOOLEAN
Description
Enables or disables the symbology for Japanese Postal barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.japPostal
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.japPostal
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
klasseEins
Type
BOOLEAN
Description
Enables or disables the Klasse Eins laser on time function.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.klasseEins
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.klasseEins
Platforms
- Windows Mobile
- Zebra devices only (Laser scanners on Symbol-branded devices)
korean3of5
Type
BOOLEAN
Description
Enables or disables the symbology for Korean 3of5 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.korean3of5
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.korean3of5
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
korean3of5maxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a Korean 3of5 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.korean3of5maxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.korean3of5maxLength
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
korean3of5minLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a Korean 3of5 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.korean3of5minLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.korean3of5minLength
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
korean3of5redundancy
Type
BOOLEAN
Description
Sets Korean 3of5 Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.korean3of5redundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.korean3of5redundancy
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
lcdMode
Type
BOOLEAN
Description
Controls whether LCD Mode is enabled on the scanner. LCD Mode makes it easier to scan barcodes off of LCD screens (like mobile device screens)
Params
Default: false
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.lcdMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.lcdMode
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
linearSecurityLevel
Type
STRING
Description
Describes the linear security level used during decoding. This determines the number of times a barcode must be read before it is decoded. If the successive reads of the barcode do not match, it will not be decoded.
Values
Possible Values (STRING):
- Constant: EB.Barcode.REDUNDANCY_AND_LENGTH - String: redundancyAndLength Double redundancy based on redundancy flags and code length. Only applicable to laser scanners, not BlockBuster imager scanners. Not Supported on Android devices with EMDK version 3.1 and later.
- Constant: EB.Barcode.SHORT_OR_CODABAR - String: shortOrCodabar Double redundancy if short barcode or Codabar.
- Constant: EB.Barcode.LONG_AND_SHORT - String: longAndShort Double redundancy for long barcodes, triple for short barcodes.
- Constant: EB.Barcode.ALL_TWICE - String: allTwice Double redundancy for all barcodes.
- Constant: EB.Barcode.ALL_THRICE - String: allThrice Triple redundancy for all barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.linearSecurityLevel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.linearSecurityLevel
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
lowBatteryScan
Type
BOOLEAN
Description
Set to false to disable scanning when the battery is low / critical or set to true to enable it.
Params
Default: false
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.lowBatteryScan
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.lowBatteryScan
Platforms
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
macroMicroPdf
Type
BOOLEAN
Description
Enables or disables the symbology for MacroMicroPDF barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroMicroPdf
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroMicroPdf
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
macroMicroPdfBufferLabels
Type
BOOLEAN
Description
If true, the scanner driver will return the barcode data only after the complete macroMicroPdf sequence has been read. If false, the scanner driver will return each barcode in the macroMicroPdf sequence as it is read.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroMicroPdfBufferLabels
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroMicroPdfBufferLabels
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
macroMicroPdfConvertToMicroPdf
Type
BOOLEAN
Description
If true, MacroMicroPDF barcodes will be converted to MicroPDF codes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroMicroPdfConvertToMicroPdf
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroMicroPdfConvertToMicroPdf
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
macroMicroPdfExclusive
Type
BOOLEAN
Description
If true, the scanner driver will not complete read requests while in the middle of a macroMicroPdf sequence. Once a macroMicroPdf sequence has been started it must be completed or canceled before the scan driver will complete other read requests.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroMicroPdfExclusive
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroMicroPdfExclusive
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
macroMicroPdfReportAppendInfo
Type
BOOLEAN
Description
If true, the appended info is concatenated to the decoded data before being returned.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroMicroPdfReportAppendInfo
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroMicroPdfReportAppendInfo
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
macroPdf
Type
BOOLEAN
Description
Enables or disables the symbology for Macro PDF barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroPdf
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroPdf
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
macroPdfBufferLabels
Type
BOOLEAN
Description
When true, the scanner driver will return he barcode data only after the complete macroPdf sequence has been read. If false, the scan driver will return each barcode in the macroPdf sequence as it is read.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroPdfBufferLabels
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroPdfBufferLabels
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
macroPdfConvertToPdf417
Type
BOOLEAN
Description
If true, MacroPDF barcodes will be converted to PDF417 codes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroPdfConvertToPdf417
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroPdfConvertToPdf417
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
macroPdfExclusive
Type
BOOLEAN
Description
If true, the scanner driver will not complete read requests while in the middle of a macroPdf sequence. Once a macroPdf sequence has been started it must be completed or canceled before the scan driver will complete other read requests.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.macroPdfExclusive
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.macroPdfExclusive
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
mailMark
Type
BOOLEAN
Description
Enables or disables the symbology for MailMark decoder.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.mailMark
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.mailMark
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
matrix2of5
Type
BOOLEAN
Description
Enables or disables the symbology for Matrix 2of5 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.matrix2of5
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.matrix2of5
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
matrix2of5maxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a Matrix 2of5 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.matrix2of5maxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.matrix2of5maxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
matrix2of5minLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a Matrix 2of5 barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.matrix2of5minLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.matrix2of5minLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
matrix2of5reportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned Matrix 2of5 barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.matrix2of5reportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.matrix2of5reportCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
matrix2of5verifyCheckDigit
Type
BOOLEAN
Description
Enables verification of the Matrix 2of5 symbology check digit.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.matrix2of5verifyCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.matrix2of5verifyCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
maxiCode
Type
BOOLEAN
Description
Enables or disables the symbology for Maxicode barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.maxiCode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.maxiCode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
microPdf
Type
BOOLEAN
Description
Enables or disables the symbology for Micro PDF barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.microPdf
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.microPdf
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
microQr
Type
BOOLEAN
Description
Enables or disables the symbology for Micro QR barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.microQr
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.microQr
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
msi
Type
BOOLEAN
Description
Enables or disables the symbology for MSI barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.msi
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.msi
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
msiCheckDigitScheme
Type
STRING
Description
Specifies the check digit scheme used to verify MSI barcodes.
Values
Possible Values (STRING):
- Constant: EB.Barcode.MSI_CHECKDIGITS_MOD11 - String: mod11 The first check digit is MOD 11, the second is MOD 10.
- Constant: EB.Barcode.MSI_CHECKDIGITS_MOD10 - String: mod10 Both check digits are MOD 10.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.msiCheckDigitScheme
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.msiCheckDigitScheme
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
msiCheckDigits
Type
STRING
Description
Sets the number of MSI check digits to use.
Values
Possible Values (STRING):
- Constant: EB.Barcode.MSI_CHECKDIGITS_ONE - String: one Use one check digit for MSI barcodes.
- Constant: EB.Barcode.MSI_CHECKDIGITS_TWO - String: two Use two check digits for MSI barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.msiCheckDigits
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.msiCheckDigits
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
msiMaxLength
Type
INTEGER
Description
Specifies the maximum number of allowable characters in a MSI barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.msiMaxLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.msiMaxLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
msiMinLength
Type
INTEGER
Description
Specifies the minimum number of allowable characters in a MSI barcode. If your application only expects barcode lengths in a certain range, reducing the allowed range can improve scanning performance. Allowed values are 0 to 55.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.msiMinLength
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.msiMinLength
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
msiRedundancy
Type
BOOLEAN
Description
Sets the MSI Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.msiRedundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.msiRedundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
msiReportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned MSI barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.msiReportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.msiReportCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
oneDQuietZoneLevel
Type
STRING
Description
Specifies the effort at which the decoder will attempt to decode margin-less barcodes. It supports on Android with EMDK version 6.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.QZ_LEVEL_0 - String: level_0 The decoder will perform margin decoding as usual.
- Constant: EB.Barcode.QZ_LEVEL_1 - String: level_1 The decoder will perform more aggressively.
- Constant: EB.Barcode.QZ_LEVEL_2 - String: level_2 The decoder requires only one side end of barcode.
- Constant: EB.Barcode.QZ_LEVEL_3 - String: level_3 The decoder can decode anything.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.oneDQuietZoneLevel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.oneDQuietZoneLevel
Platforms
- Android
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
pairAfterScannerReboot
Type
STRING
Description
Enable and disable automatic reconnection after scanner reboot. Applicable to DS3678 Bluetooth scanner only. It supports on Android with EMDK version 6.6 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.PASR_DISABLE - String: DISABLE Don't keep paring Info after bluetooth scanner reboot.
- Constant: EB.Barcode.PASR_ENABLE - String: ENABLE Keep pairing info after bluetooth scanner reboot.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.pairAfterScannerReboot
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.pairAfterScannerReboot
Platforms
- Android
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model DS3678 )
pdf417
Type
BOOLEAN
Description
Enables or disables the symbology for PDF 417 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.pdf417
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.pdf417
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
picklistEx
Type
STRING
Description
Allows the imager or camera to decode only the barcode that is directly under the cross-hair (+)/center of the reticle part of the pattern. This feature is useful in applications where multiple barcodes may appear in the field of view during a decode session and only one of them is targeted for decode. It supports on Android with EMDK version 6.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.PICKLISTEX_DISABLED - String: disabled Disables Picklist mode. Any barcode within the field of view can be decoded.
- Constant: EB.Barcode.PICKLISTEX_HARDWARE_RETICLE - String: hardwareReticle Enables the HARDWARE Picklist mode so that only the barcode that is directly under the cross-hair or center of reticle is decoded. This is useful when used in conjunction with the static and dynamic reticle viewfinder modes. This mode is not applicable when there is no projected reticle like camera scanning.
- Constant: EB.Barcode.PICKLISTEX_SOFTWARE_RETICLE - String: softwareReticle Enables the SOFTWARE Picklist mode so that only the barcode that is directly under the cross-hair or center of reticle is decoded. This is useful when used in conjunction with the static and dynamic reticle viewfinder modes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.picklistEx
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.picklistEx
Platforms
- Android
- Zebra devices only (Imager / Camera scanners on Symbol-branded devices)
picklistMode
Type
STRING
Description
Allows the imager to decode only the barcode that is directly under the cross-hair on Android and center of the reticle on WM/CE. This feature is most useful in applications where multiple barcodes may appear in the field of view during a decode session and only one of them is targeted for decode. When enabled picklistMode will override aimMode or, if no aiming is chosen, and use aimMode:reticle. This mode will also interact with viewfinderMode, see the EMDK for C help file for more information. Enabling picklist mode may adversely affect overall decoding performance.
Values
Possible Values (STRING):
- Constant: EB.Barcode.PICKLIST_DISABLED - String: disabled Disables picklist mode so any barcode within the field of view can be decoded.
- Constant: EB.Barcode.PICKLIST_HARDWARE_RETICLE - String: hardwareReticle Enables picklist mode so that only the barcode under the projected reticle can be decoded. On Windows, if the imager does not support a projected reticle then the behavior is the same as softwareReticle. On Android, this is only supported for Imager (non-viewfinder) based scanners.
- Constant: EB.Barcode.PICKLIST_SOFTWARE_RETICLE - String: softwareReticle Enables picklist mode so that only the barcode in the center of the image is decoded on WM/CE and under the cross-hair on Android. This is most useful when used in conjunction with static and dynamic reticle viewfinder modes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.picklistMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.picklistMode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Imager / Camera scanners on Symbol-branded devices)
poorQuality1dMode
Type
BOOLEAN
Description
Allows poor quality 1D barcodes to be read When true, but this will adversely affect the overall decoding performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.poorQuality1dMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.poorQuality1dMode
Platforms
- Windows Mobile
- Zebra devices only (Imager / Camera scanners on Symbol-branded devices)
poorQualityDecodeEffortLevel
Type
STRING
Description
It provides enhancement modes for decoding barcodes of poor or degraded quality. It supports on Android with EMDK version 6.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.PQD_LEVEL_0 - String: level_0 Decoding performance on regular 1D and 2D barcodes is not affected.
- Constant: EB.Barcode.PQD_LEVEL_1 - String: level_1 The scanner performance on regular 2-D barcodes is impacted while decoding performance on Tesco Thailand barcode and Suppository barcode is improved.
- Constant: EB.Barcode.PQD_LEVEL_2 - String: level_2 Same as Level_1
- Constant: EB.Barcode.PQD_LEVEL_3 - String: level_3 Same as Level_1.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.poorQualityDecodeEffortLevel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.poorQualityDecodeEffortLevel
Platforms
- Android
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
qrCode
Type
BOOLEAN
Description
Enables or disables the symbology for QR Code barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.qrCode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.qrCode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
rasterHeight
Type
INTEGER
Description
Vertical rastering height to use, as a percentage, when rasterMode:openAlways is applied. This value must be between 0 and 100.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rasterHeight
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rasterHeight
Platforms
- Windows Mobile
- Zebra devices only (Laser scanners on Symbol-branded devices)
rasterMode
Type
STRING
Description
Describes the type of vertical rastering to use.
Values
Possible Values (STRING):
- Constant: EB.Barcode.RASTER_NONE - String: none No vertical rastering.
- Constant: EB.Barcode.RASTER_OPEN_ALWAYS - String: openAlways Vertical rastering is always full open. To adjust the rastering height use the rasterHeight property.
- Constant: EB.Barcode.RASTER_SMART - String: smart Vertical rastering mode is 'Smart'.
- Constant: EB.Barcode.RASTER_CYCLONE - String: cyclone Vertical rastering mode is 'Cyclone'.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rasterMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rasterMode
Platforms
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
rsmBatteryCapacity
Type
STRING Read Only
Description
The remaining capacity of the battery, in the range 0 to 100. 'unknown' will be returned if the capacity could not be determined, for example if the scanner had no battery.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBatteryCapacity
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBatteryCapacity
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBatteryId
Type
STRING Read Only
Description
One of 'simple', 'double', 'disabled' or 'unknown'
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBatteryId
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBatteryId
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBatteryStatus
Type
STRING Read Only
Description
Indicates the status of the remote scanner's battery, will be one of 'unknown', 'full', 'medium', 'empty', 'chargingFullRate', 'chargingHalfRate', 'chargingTrickle' or 'discharging'
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBatteryStatus
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBatteryStatus
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothAddress
Type
STRING Read Only
Description
Bluetooth address as FF:FF:FF:FF:FF:FF where FF is a hex number.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothAddress
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothAddress
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothAuthentication
Type
BOOLEAN
Description
True if authentication is required.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothAuthentication
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothAuthentication
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothAutoReconnect
Type
STRING
Description
Bluetooth reconnection scheme.
Values
Possible Values (STRING):
- Constant: EB.Barcode.RSM_AUTORECONNECT_NONE - String: none No scheme.
- Constant: EB.Barcode.RSM_AUTORECONNECT_ON_POWER - String: onPower When powered on.
- Constant: EB.Barcode.RSM_AUTORECONNECT_ON_OUT_OF_RANGE - String: onOutOfRange When device goes out of range.
- Constant: EB.Barcode.RSM_AUTORECONNECT_ON_POWER_OUT_OF_RANGE - String: onPowerOutOfRange When powered on or when the device goes out of range.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothAutoReconnect
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothAutoReconnect
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothBeepOnReconnectAttempt
Type
BOOLEAN
Description
When true, scanner will emit 5 beeps every 5 seconds whilst re-connection in progress.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothBeepOnReconnectAttempt
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothBeepOnReconnectAttempt
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothEncryption
Type
BOOLEAN
Description
True if encryption is required.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothEncryption
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothEncryption
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothFriendlyName
Type
STRING
Description
Friendly Bluetooth name, e.g. 'MyBTScanner'
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothFriendlyName
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothFriendlyName
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothHidAutoReconnect
Type
STRING
Description
'neverReconnect', 'reconnectOnData' or 'reconnectImmediately'
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothHidAutoReconnect
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothHidAutoReconnect
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothInquiryMode
Type
STRING
Description
To use a general inquiry mode, 'general' else, 'limited'
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothInquiryMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothInquiryMode
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothPinCode
Type
STRING
Description
Up to 5 character PIN code used for Bluetooth authentication.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothPinCode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothPinCode
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothPinCodeType
Type
STRING
Description
'UseStored' will use the PIN code stored in the memory of the ring scanner, by default '12345'. 'PromptUser' indicates that the ring scanner should be used to scan 5 alpha numeric barcodes to define the PIN, eg. "1", "2", "3", "4", "5" (for PIN 12345). This parameter is not saved permanently on the ring scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothPinCodeType
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothPinCodeType
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmBluetoothReconnectionAttempts
Type
INTEGER
Description
How long the scanner tries to re-establish connection if it goes out of range, in seconds. This value must be a multiple of 5 and in the range 30 to 60 seconds.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmBluetoothReconnectionAttempts
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmBluetoothReconnectionAttempts
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmDateOfManufacture
Type
STRING Read Only
Description
Ring scanner date of manufacture as DDMMYY.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmDateOfManufacture
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmDateOfManufacture
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmDateOfService
Type
STRING Read Only
Description
Ring scanner date of service as DDMMYY.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmDateOfService
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmDateOfService
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmDecodeFeedback
Type
BOOLEAN
Description
If true, the remote scanner beeps and illuminates its green LED on a successful decode.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmDecodeFeedback
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmDecodeFeedback
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmDeviceClass
Type
STRING Read Only
Description
The device class of the ring scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmDeviceClass
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmDeviceClass
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmFirmwareVersion
Type
STRING Read Only
Description
Scanner's operating system version.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmFirmwareVersion
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmFirmwareVersion
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmForceSavePairingBarcode
Type
BOOLEAN
Description
Force saving the barcode assigned to the device to which the scanner has been paired.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmForceSavePairingBarcode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmForceSavePairingBarcode
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmGoodScansDelay
Type
INTEGER
Description
Delay between good scans in proximity continuous mode, measured in milliseconds. Range 0 to 15000. This value must be a multiple of 100.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmGoodScansDelay
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmGoodScansDelay
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmIgnoreCode128Usps
Type
BOOLEAN
Description
Feature for ignoring Code 128 barcodes beginning with 420 and 421.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmIgnoreCode128Usps
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmIgnoreCode128Usps
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmLowBatteryIndication
Type
BOOLEAN
Description
Whether or not the ring scanner should give a low battery indication.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmLowBatteryIndication
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmLowBatteryIndication
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmLowBatteryIndicationCycle
Type
INTEGER
Description
Low battery indication cycle time, in seconds. Must be one of 15, 30, 60, 90 or 120.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmLowBatteryIndicationCycle
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmLowBatteryIndicationCycle
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmMems
Type
BOOLEAN
Description
If you press the trigger on an RSM scanner, proximity enabled will be turned off, even though it still reports its self as being turned on if you query the property. In order to use ProximityEnable you need to also have Mems enabled, this is the motion sensor and if you disable Mems the scanner will not function.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmMems
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmMems
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmModelNumber
Type
STRING Read Only
Description
Ring scanner model number.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmModelNumber
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmModelNumber
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmPagingBeepSequence
Type
INTEGER
Description
Range 0 to 15 to specify the pattern for the paging beep sequence.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmPagingBeepSequence
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmPagingBeepSequence
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmPagingEnable
Type
BOOLEAN
Description
Specify whether paging the device is enabled.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmPagingEnable
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmPagingEnable
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmProximityContinuous
Type
BOOLEAN
Description
Proximity continuous mode.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmProximityContinuous
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmProximityContinuous
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmProximityDistance
Type
STRING
Description
Specify the distance for the proximity feature as 'short', 'medium' or 'long'
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmProximityDistance
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmProximityDistance
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmProximityEnable
Type
BOOLEAN
Description
If you press the trigger on an RSM scanner, proximity enabled will be turned off, even though it still reports its self as being turned on if you query the property. In order to use ProximityEnable you need to also have Mems enabled, this is the motion sensor and if you disable Mems the scanner will not function.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmProximityEnable
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmProximityEnable
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmScanLineWidth
Type
STRING
Description
The laser scan line width, 'wide' or 'narrow'.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmScanLineWidth
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmScanLineWidth
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmScanTriggerWakeup
Type
BOOLEAN
Description
Scanner trigger will wakeup the device from a low power state.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmScanTriggerWakeup
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmScanTriggerWakeup
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
rsmSerialNumber
Type
STRING Read Only
Description
Ring scanner serial number.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.rsmSerialNumber
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.rsmSerialNumber
Platforms
- Windows Mobile
- Zebra devices only (Symbol Technologies' Bluetooth barcode scanners, model RS507)
sameSymbolTimeout
Type
INTEGER
Description
When the aimType:continuousRead property is applied this value defines the interval between which the same barcode can be decoded twice. The value is specified in milliseconds, use 0 to indicate no interval between successive reads. Use this value to prevent accidental duplicate scans. It supports on Android with EMDK version 6.3 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.sameSymbolTimeout
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.sameSymbolTimeout
Platforms
- Android
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
scanMode
Type
STRING
Description
Describes the available scanning modes such as Single Barcode and UDI. This property allows you to set one type at a time. It supports on Android with EMDK version 6.6 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.SCANMODE_SINGLE_BARCODE - String: single_barcode Decode only a single barcode at a time..
- Constant: EB.Barcode.SCANMODE_UDI - String: udi Decode UDI standard barcodes. This will decode AI fields of the barcodes as well. Note that the UDI scanning is only available with Imager based scanners
- Constant: EB.Barcode.SCANMODE_MULTI_BARCODE - String: multi_barcode Decode multiple barcodes at a time..
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.scanMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.scanMode
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
scanTimeout
Type
INTEGER
Description
Maximum time in milliseconds that laser scanners will emit a beam or imager scanners will enable the imager. A value of 0 indicates an infinite timeout. This parameter is compatible with aimType:trigger, aimType:timedHold, aimType:timedRelease and aimType:pressAndRelease. Note that for regulatory reasons scanTimeout is not configurable on all laser / imager scanners. Scan timeout is extent to hardware capabilities and limitations.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.scanTimeout
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.scanTimeout
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
scannerType
Type
STRING Read Only
Description
The type of scanner in use, will be one of 'Camera', 'Imager' or 'Laser'. Camera scanners capture and process an image taken via the devices camera. Imager scanners rely on capturing and processing an image of the barcode via dedicated scanning hardware. Both camera and imager scanners are capable of decoding 1D and 2D barcodes. Laser scanners are only capable of decoding 1D barcodes and rely on a sweeping laser.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.scannerType
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.scannerType
Platforms
- Android
- Windows CE (all scanners)
- Windows Mobile
sceneDetectionQualifier
Type
STRING
Description
Qualifier for starting scene detection when presentation is selected as the imType
. Supported on Android devices with EMDK version 7.3 and later.
Values
Possible Values (STRING):
Constant: EB.Barcode.SCENEDETECTIONQUALIFIER_NONE - String: "none" Scene detection starts immediately after scanner read submission. Default value is NONE.
Constant: EB.Barcode.SCENEDETECTIONQUALIFIER_PROXIMITY_SENSOR_INPUT - String: " proximitysensorinput " Scene detection is started upon the assertion received from proximity sensor.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.sceneDetectionQualifier
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.sceneDetectionQualifier
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
signature
Type
BOOLEAN
Description
Enables or disables the symbology for Signature barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance. Signature barcodes return their data in Data URI format, it is recommended you adjust the dataBufferSize and barcodeDataFormat properties when scanning Signature barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.signature
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.signature
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
signatureImageHeight
Type
INTEGER
Description
Specifies the output height of the captured signature barcode. Signature barcodes return their data in Data URI format, it is recommended you adjust the dataBufferSize and barcodeDataFormat properties when scanning Signature barcodes. Provide a number greater than or equal to 20.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.signatureImageHeight
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.signatureImageHeight
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
signatureImageQuality
Type
INTEGER
Description
Specifies the output quality of the captured signature barcode. Signature barcodes return their data in Data URI format, it is recommended you adjust the dataBufferSize and barcodeDataFormat properties when scanning Signature barcodes. Provide a value between 10 and 100 inclusive.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.signatureImageQuality
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.signatureImageQuality
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
signatureImageWidth
Type
INTEGER
Description
Specifies the output width of the captured signature barcode. Signature barcodes return their data in Data URI format, it is recommended you adjust the dataBufferSize and barcodeDataFormat properties when scanning Signature barcodes. Provide a number greater than or equal to 20.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.signatureImageWidth
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.signatureImageWidth
Platforms
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
signatureImageBitsPerPixel
Type
STRING
Description
Used to set the bits-per-pixel for decoding image. Supported on Android with EMDK version 7.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.SIGNATUREIMAGEBITSPERPIXEL_BPP1 - String: "auto" sets bits-per-pixel value to BPP1.
- Constant: EB.Barcode.SIGNATUREIMAGEBITSPERPIXEL_BPP4- String: "disabled" sets bits-per-pixel value to BPP4.
- Constant: EB.Barcode.SIGNATUREIMAGEBITSPERPIXEL_BPP8- String: "enabled" sets bits-per-pixel value to BPP8.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.signatureImageBitsPerPixel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.signatureImageBitsPerPixel
Platforms
- Windows Mobile
- Android
- Zebra devices only (scanners on Symbol-branded devices)
signatureImageFormat
Type
STRING
Description
Sets the image format for the decoding image. Supported on Android with EMDK version 7.3 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.SIGNATUREIMAGEFORMAT_BMP - String: "BMP" sets image format value to BMP.
- Constant: EB.Barcode.SIGNATUREIMAGEFORMAT_JPEG- String: "JPEG" sets image format value to JPEG.
- Constant: EB.Barcode.SIGNATUREIMAGEFORMAT_TIFF- String: "TIFF" sets image format value to TIFF.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.signatureImageFormat
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.signatureImageFormat
Platforms
- Android
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
timedAimDuration
Type
INTEGER
Description
Aim duration in milliseconds for aimType:timedHold and aimType:timedRelease. The duration must be less than the scanTimeout. It supports on Android with EMDK version 6.3 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.timedAimDuration
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.timedAimDuration
Platforms
- Android
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
tlc39
Type
BOOLEAN
Description
Enables or disables the symbology for TLC 39 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.tlc39
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.tlc39
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
triggerConnected
Type
BOOLEAN
Description
Only applies to an enabled laser or imaging scanner. Disconnecting the trigger will prevent the scan beam from being emitted, this can temporarily prevent a user from scanning without having to disable the scanner, which can take longer. By default the trigger will be connected when the scanner is first enabled, you do not have to connect it separately. Please note that disconnecting the trigger will also prevent the start method from emitting a laser. This property will only affect the scanner and will have no effect on the 'captureTrigger' API.
Params
Default: true
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.triggerConnected
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.triggerConnected
Platforms
- Windows Mobile
- Zebra devices only (scanners on Symbol-branded devices)
triggerType
Type
STRING
Description
List of supported trigger type..
Values
Possible Values (STRING):
- Constant: EB.Barcode.HARD - String: hard Hard trigger. When this mode is set, the user has to manually press the trigger on the device after issuing the EB.Barcode.enable() call.
- Constant: EB.Barcode.SOFT_ALWAYS - String: softAlways Soft trigger is used for all pending scans and for future reads issued.
- Constant: EB.Barcode.SOFT_ONCE - String: softOnce Soft trigger is used only once for a pending read or for the next issued read.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.triggerType
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.triggerType
Platforms
- Android
- Zebra devices only (Imager scanners on Symbol-branded devices)
trioptic39
Type
BOOLEAN
Description
Enables or disables the symbology for Trioptic 39 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.trioptic39
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.trioptic39
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
trioptic39Redundancy
Type
BOOLEAN
Description
Sets the Trioptic 39 Redundancy property, if set the barcode must be decoded twice before being accepted. This will slow scanning but improve reliability.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.trioptic39Redundancy
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.trioptic39Redundancy
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
ukPostal
Type
BOOLEAN
Description
Enables or disables the symbology for UK Postal barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.ukPostal
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.ukPostal
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
ukPostalReportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned UK Postal barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.ukPostalReportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.ukPostalReportCheckDigit
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanBookland
Type
BOOLEAN
Description
Enables or disables decoding of UPC EAN Bookland barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanBookland
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanBookland
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanBooklandFormat
Type
STRING
Description
Specifies the bookland format to use when decoding UPC EAN Bookland barcodes.
Values
Possible Values (STRING):
- Constant: EB.Barcode.BOOKLAND_ISBN10 - String: isbn10 Causes 978 bookland barcodes to be reported in 10 digit mode.
- Constant: EB.Barcode.BOOKLAND_ISBN13 - String: isbn13 Causes 978/979 bookland barcodes to be transmitted as EAN13 as per 2007 ISBN-13 protocol.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanBooklandFormat
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanBooklandFormat
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanConvertGs1dataBarToUpcEan
Type
BOOLEAN
Description
If true, RSS barcodes will be converted to UPC/EAN format. For this setting to work UPC/EAN symbologies must be enabled.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanConvertGs1dataBarToUpcEan
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanConvertGs1dataBarToUpcEan
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanCoupon
Type
BOOLEAN
Description
Enables or disables decoding of UPC EAN Coupon barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanCoupon
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanCoupon
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanCouponReport
Type
STRING
Description
It Used to differentiate between old coupon (UPC/EAN and Code128) and new GS1 DataBar Coupons.
Values
Possible Values (STRING):
- Constant: EB.Barcode.COUPONREPORT_OLD - String: OLD Scanner will read only the old coupon format.
- Constant: EB.Barcode.COUPONREPORT_NEW - String: NEW Scanner will read only the new GS1 DataBar coupon format.
- Constant: EB.Barcode.COUPONREPORT_BOTH - String: BOTH Scanner will read both old coupon format as well as the new GS1 DataBar coupon format.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanCouponReport
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanCouponReport
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanLinearDecode
Type
BOOLEAN
Description
Sets the linear decode property.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanLinearDecode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanLinearDecode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanRandomWeightCheckDigit
Type
BOOLEAN
Description
When true, enables random weight check digit verification.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanRandomWeightCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanRandomWeightCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanRetryCount
Type
INTEGER
Description
Sets the retry count for auto-discriminating for supplementals. The value must be between 2 - 20 inclusive.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanRetryCount
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanRetryCount
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanSecurityLevel
Type
INTEGER
Description
Sets the Security level for decoding UPC EAN barcodes and accepts a value between 0 and 3 inclusive. 0: This setting allows the scanner to operate in its most aggressive state, while providing sufficient security in decoding most 'in-spec' barcodes. 1: This setting eliminates most mis-decodes. 2: Select this option if security level 1 fails to eliminate mis-decodes. 3: Select this option if security level 1 and 2 fail to eliminate mis-decodes. Be advised that selecting level 3 is an extreme measure against mis-decoding and will significantly impair the decoding ability of the scanner.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanSecurityLevel
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanSecurityLevel
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanSupplemental2
Type
BOOLEAN
Description
When true, enables the supplemental barcode decoding. Note you must have upcEanSupplementalMode:always set for this parameter to take effect.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanSupplemental2
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanSupplemental2
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanSupplemental5
Type
BOOLEAN
Description
When true, enables the supplemental barcode decoding. Note you must have upcEanSupplementalMode:always set for this parameter to take effect.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanSupplemental5
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanSupplemental5
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcEanSupplementalMode
Type
STRING
Description
Describes the UPC EAN Supplemental mode.
Values
Possible Values (STRING):
- Constant: EB.Barcode.UPCEAN_NONE - String: none Supplementals are ignored.
- Constant: EB.Barcode.UPCEAN_AUTO - String: auto Auto-discriminates supplementals.
- Constant: EB.Barcode.UPCEAN_ALWAYS - String: always Will not decode upc/ean without supplementals.
- Constant: EB.Barcode.UPCEAN_SMART - String: smart The decoder will return the decoded value of the main block right away if it does not belong to any of the supplemental types. If the barcode starts with one of the prefixes it will search the image more aggressively for a supplemental. The scanner will try to scan the supplemental if it is present but if that fails, the main barcode will be returned.
- Constant: EB.Barcode.UPCEAN_379 - String: 378or379 Auto-discriminates supplemental for upc/ean codes starting with 378 or 379. Will disable reading of supplementals for any other upc/ean barcodes not starting with these values. The supplemental will be scanned if present but if scanning fails then the main barcode will be returned.
- Constant: EB.Barcode.UPCEAN_979 - String: 978or979 Auto-discriminates supplemental for upc/ean codes starting with 978 or 979. Will disable reading of supplementals for any other upc/ean barcodes not starting with these values. The supplemental will be scanned if present but if scanning fails then the main barcode will be returned.
- Constant: EB.Barcode.UPCEAN_439 - String: 414or419or434or439 Auto-discriminates supplemental for upc/ean codes starting with 414 or 419 or 434 or 439. Will disable reading of supplementals for any other upc/ean barcodes not starting with these values. The supplemental will be scanned if present but if scanning fails then the main barcode will be returned.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcEanSupplementalMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcEanSupplementalMode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upca
Type
BOOLEAN
Description
Enables or disables the symbology for UPCA barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upca
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upca
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcaPreamble
Type
STRING
Description
Controls the preamble applied to the UPCA barcode.
Values
Possible Values (STRING):
- Constant: EB.Barcode.UPCA_PREAMBLE_NONE - String: none Applies no preamble to the barcode.
- Constant: EB.Barcode.UPCA_PREAMBLE_SYSTEMCHAR - String: systemChar Applies system character preamble to the barcode.
- Constant: EB.Barcode.UPCA_PREAMBLE_COUNTRY - String: countryAndSystemChars Applies both system and country code preamble to the barcode.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcaPreamble
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcaPreamble
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upcaReportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned UPCA barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upcaReportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upcaReportCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upce0
Type
BOOLEAN
Description
Enables or disables the symbology for UPCE0 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upce0
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upce0
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upce0convertToUpca
Type
BOOLEAN
Description
When true, scanned UPCE0 barcodes will be converted to UPCA and UPCA parameters used.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upce0convertToUpca
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upce0convertToUpca
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upce0preamble
Type
STRING
Description
Controls the preamble applied to the UPCE0 barcode.
Values
Possible Values (STRING):
- Constant: EB.Barcode.UPCE0_PREAMBLE_NONE - String: none Applies no preamble to the barcode.
- Constant: EB.Barcode.UPCE0_PREAMBLE_SYSTEMCHAR - String: systemChar Applies system character preamble to the barcode.
- Constant: EB.Barcode.UPCE0_PREAMBLE_COUNTRY - String: countryAndSystemChars Applies both system and country code preamble to the barcode.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upce0preamble
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upce0preamble
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upce0reportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned UPCE0 barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upce0reportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upce0reportCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upce1
Type
BOOLEAN
Description
Enables or disables the symbology for UPCE1 barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upce1
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upce1
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upce1convertToUpca
Type
BOOLEAN
Description
When true, scanned UPCE1 barcodes will be converted to UPCA and UPCA parameters used.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upce1convertToUpca
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upce1convertToUpca
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upce1preamble
Type
STRING
Description
Controls the preamble applied to the UPCE1 barcode.
Values
Possible Values (STRING):
- Constant: EB.Barcode.UPCE1_PREAMBLE_NONE - String: none Applies no preamble to the barcode.
- Constant: EB.Barcode.UPCE1_PREAMBLE_SYSTEMCHAR - String: systemChar Applies system character preamble to the barcode.
- Constant: EB.Barcode.UPCE1_PREAMBLE_COUNTRY - String: countryAndSystemChars Applies both system and country code preamble to the barcode.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upce1preamble
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upce1preamble
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
upce1reportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned UPCE1 barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.upce1reportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.upce1reportCheckDigit
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
us4state
Type
BOOLEAN
Description
Enables or disables the symbology for US 4-State barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.us4state
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.us4state
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
us4stateFics
Type
BOOLEAN
Description
Enables or disables the symbology for US 4-State FICS barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.us4stateFics
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.us4stateFics
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
usPlanet
Type
BOOLEAN
Description
Enables or disables the symbology for US Planet barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.usPlanet
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.usPlanet
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
usPlanetReportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned US Planet barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.usPlanetReportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.usPlanetReportCheckDigit
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
usPostNet
Type
BOOLEAN
Description
Enables or disables the symbology for US Post Net barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.usPostNet
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.usPostNet
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
usPostNetReportCheckDigit
Type
BOOLEAN
Description
When true, the barcode check digit(s) will be reported for scanned US Post Net barcodes.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.usPostNetReportCheckDigit
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.usPostNetReportCheckDigit
Platforms
- Android
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
viewfinderFeedback
Type
STRING
Description
Configures the feedback given after a successful scan. This value is ignored if aimType is set to continuousRead and no feedback will be given. Not supported on Android devices with EMDK version 3.1 and later.
Values
Possible Values (STRING):
- Constant: EB.Barcode.VF_FEEDBACK_ENABLED - String: enabled The last image that was successfully decoded is displayed. The time for which the image is displayed can be configured by the viewfinderFeedbackTime parameter.
- Constant: EB.Barcode.VF_FEEDBACK_DISABLED - String: disabled No feedback is given in the viewfinder after a successful decode.
- Constant: EB.Barcode.VF_FEEDBACK_RETICLE - String: reticle The last image that was successfully decoded is displayed along with a red reticle in the center of the image. The time for which the image is displayed can be configured by the viewfinderFeedbackTime parameter.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.viewfinderFeedback
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.viewfinderFeedback
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Camera scanners on Symbol-branded devices)
viewfinderFeedbackTime
Type
INTEGER
Description
If the viewfinderFeedback:enabled or viewfinderFeedback:reticle are applied then the decoded barcode will remain on the screen for this duration, specified in milliseconds. Not supported on Android devices with EMDK version 3.1 and later.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.viewfinderFeedbackTime
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.viewfinderFeedbackTime
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Camera scanners on Symbol-branded devices)
viewfinderHeight
Type
INTEGER
Description
When scanning a barcode using a Camera scanner the viewfinder preview window will be this number of pixels in height. The images displayed in the viewfinder will be scaled as appropriate.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.viewfinderHeight
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.viewfinderHeight
Platforms
- Windows Mobile
- Zebra devices only (Camera scanners on Symbol-branded devices)
viewfinderMode
Type
STRING
Description
Configures the mode of the scanner viewfinder window. This attribute is not supported on all Scanners and will interact with the picklistMode parameter, see the EMDK for C help file for more information.
Values
Possible Values (STRING):
- Constant: EB.Barcode.VIEWFINDER_ENABLED - String: enabled Only the viewfinder is enabled (not the reticle). Displays a viewfinder on the screen showing the image being captured by the camera.
- Constant: EB.Barcode.VIEWFINDER_DISABLED - String: disabled The viewfinder will not be displayed during aiming or scanning.
- Constant: EB.Barcode.VIEWFINDER_STATIC_RETICLE - String: staticReticle Displays the viewfinder as well as draws a red reticle in the center of the image which helps with tracking the barcode.
- Constant: EB.Barcode.VIEWFINDER_DYNAMIC_RETICLE - String: dynamicReticle Displays the viewfinder as well as draws a red reticle in the center of the image. If the barcode in the image is 'decodable' the reticle turns green to indicate this. This mode requires a second trigger press to decode the barcode after the reticle turns green. Not supported on Android.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.viewfinderMode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.viewfinderMode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Camera scanners on Symbol-branded devices)
viewfinderWidth
Type
INTEGER
Description
When scanning a barcode using a Camera scanner the viewfinder preview window will be this number of pixels wide. The images displayed in the viewfinder will be scaled as appropriate.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.viewfinderWidth
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.viewfinderWidth
Platforms
- Windows Mobile
- Zebra devices only (Camera scanners on Symbol-branded devices)
viewfinderX
Type
INTEGER
Description
When scanning a barcode using a Camera scanner the viewfinder preview window will appear this number of pixels from the left hand side of the screen. The images displayed in the viewfinder will be scaled as appropriate.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.viewfinderX
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.viewfinderX
Platforms
- Windows Mobile
- Zebra devices only (Camera scanners on Symbol-branded devices)
viewfinderY
Type
INTEGER
Description
When scanning a barcode using a Camera scanner the viewfinder preview window will appear this number of pixels from the top of the screen. The images displayed in the viewfinder will be scaled as appropriate.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.viewfinderY
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.viewfinderY
Platforms
- Windows Mobile
- Zebra devices only (Camera scanners on Symbol-branded devices)
webcode
Type
BOOLEAN
Description
Enables or disables the symbology for Webcode barcodes. If your application does not expect to scan this symbology you should disable it to improve scanning performance. Deprecated in Android 4.1 (Jelly Bean).
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.webcode
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.webcode
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
webcodeDecodeGtSubtype
Type
BOOLEAN
Description
If true, the GT Webcode subtype will be decoded. Deprecated in Android 4.1 (Jelly Bean).
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.webcodeDecodeGtSubtype
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.webcodeDecodeGtSubtype
Platforms
- Android
- Windows CE
- Windows Mobile
- Zebra devices only (Not all scanning engines support all symbologies or all symbology properties)
zoom
Type
INTEGER
Description
Used to control zoom level for the device camera. Supports only the camera scanner. Supported value are 1 to 8 in steps of 1. For decoding dotCode symbology, Zebra recommends a setting of 2. Supported on Android devices with EMDK version 7.2 and later.
This parameter controls the zoom level for camera. Note: Supported value ranges from 1 to 8 in steps of 1. It is recommended to set Camera Zoom value to 2 for decoding DotCode symbology.
Access
- Instance: This property can be accessed via an instance object of this class:
myObject.zoom
- Default Instance: This property can be accessed via the default instance object of this class.
EB.Barcode.zoom
Platforms
- Android
- Zebra devices only (scanners on Symbol-branded devices)
Access • Instance: This property can be accessed via an instance object of this class: myObject.zoom • Default Instance: This property can be accessed via the default instance object of this class. o EB.Barcode.zoom Platforms • Android • Zebra Devices Only (scanners on Symbol-branded devices)
Remarks
Limitation of Scanner and Barcode APIs
The RE 2.x Scanner API and the EB 1.x Barcode API should not be used simultaneously in any Enterprise Browser application; only one or the other should be used.
Omnii XT15
On the Zebra Omnii XT15 device running Windows Mobile/CE, the decode success and failure sounds are not audible unless the decode sound is configured manually in the Config.xml
file. To configure this setting, see the
Bluetooth Scanner Overview
Once associated with the Device a Bluetooth Scanner will remain associated even after losing the BT connection. In order to associate a different Bluetooth scanner with the device it is necessary to scan the 'unpairing' barcode and then invoke the 'disabled' method followed by the 'enabled' method, this will allow you to scan the BT association barcode with a different scanner. You can override this default behavior using the disconnectBtOnDisable property.
The following messages will be received from the Bluetooth Scanner in the bluetoothStatus event:
'BTScanAssociationBarcode'
Means the device is ready to be associated with a BT scanner. You must scan the association barcode. It is only necessary to scan the association barcode when you first associate a scanner with the device, this pairing will be remembered until you scan the unpairing barcode.
'BluetoothConnected'
The remote scanner has successfully connected to the device.
'BluetoothDisconnected'
The remote scanner has become disconnected from the device, this may be due to loss of battery, being out of range or scanning the 'unpairing' barcode. The scanner will attempt to reconnect automatically for a period of time once it regains power or goes out of range, if it fails to reconnect after the specified timeout the reconnect button on the device should be pushed. Once the unpairing barcode is scanned it is necessary to disable the scanner and then re-enable it before another scanner can be associated.
Bluetooth Scanner Support On Android Devices
On Android platform, Enterprise Browser doesnot support Bluetooth Scanner on TC70 GA1 device.
On Android platform, Enterprise Browser supports Bluetooth Scanner from Android Kitkat version and later.
Viewfinder Position Parameters
On Symbol Technologies' scanners the scanner viewfinder window is not infinitely resizable, when setting ViewFinderX, ViewFinderY, ViewFinderWidth and ViewFinderHeight ensure you do not exceed the size of the screen and it is recommended to use the same aspect ratio as your device. For applications designed to handle screen rotation it is recommended to use a scan window whose longest side will fit within both the screen width and screen height. If your viewfinder position fails to be applied it is recommended you query your log file to see which parameter is causing trouble, or reposition the window away from the edges of the screen.
Scanning and Camera Interaction
In some device configurations the scanner and camera share the same hardware. Where two modules share the same physical hardware they cannot be enabled simultaneously, in this circumstance once the scanner is enabled it must be disabled before the camera can be used, and vice versa.
Get Scanner Properties
On WM/CE, it is first necessary to enable the scanner before most of the properties can be retrieved. The case of scanner properties will differ across platforms. On WM/CE, some of the scanner properties are not exposed to set but can be retrieved. On Android, only supported scanner properties can be retrieved in "getAllProperties" method.
Set Scanner Properties
On WM/CE, for some properties, it is first necessary to apply those properties before enabling the scanner.
Android Camera Barcode limitation
As google barcode scanning library(Zxing library) supported only in Landscape mode. Barcode scanning window only appears at centre of screen in Landscape mode.
Devices lacking support
Due to platform limitations this API is not available on the following Zebra Technologies devices on specific platform. Note: However one can enable legacy scanner service and can scan the respective barcode.
- VH10 CE 6.0
Examples
Enable barcode scanner and scan a barcode
This example shows how to enable your device's barcode scanner and access the data gathered by the scanner. Note that this example assumes that your ebapi-modules.js file is in the same folder as the HTML invoking it. On symbol devices, data wedge needs to be disabled or the Enterprise Browser will not be able to claim any of the scanners.
<head>
<title>Barcode API Test</title>
<script type="text/javascript" charset="utf-8" src="ebapi-modules.js"></script>
<script type="text/javascript">
function scanReceived(params){
// No data or no timestamp, scan failed.
if(params['data']== "" || params['time']==""){
document.getElementById('display').innerHTML = "Failed!";
return;
}
// Data and timestamp exist, barcode successful, show results
var displayStr = "Barcode Data: " + params['data']+"<br>Time: "+params['time'];
document.getElementById("display").innerHTML = displayStr;
}
function enableScanners(){
EB.Barcode.enable({}, scanReceived);
// Empty property hash, '{}' loads default values for the scanner.
}
function unloadEvent(){
EB.Barcode.disable();
// Disable Barcode on unload of page to free it up for other operations.
}
</script>
</head>
<body onunload='unloadEvent()'>
<h1>Barcode API Test</h1>
<div id="display">
Barcode Data: <br>
Time: <br>
</div>
<button onclick="enableScanners()">Enable Barcode Scanners</button>
</body>