Code11checkDigitCount Decoder Setting

RhoElements 2.x API

Overview

The Code11checkDigitCount Decoder Setting is used to set the Code11CheckDigitCount property. The property can be set to verify 0, 1 or 2 check digits.

Syntax

code11checkDigitCount (Decoder Setting) <META> Syntax

<META HTTP-Equiv="scanner" content="Code11CheckDigitCount:[parameter]">

code11checkDigitCount JavaScript Object Syntax:
By default the JavaScript Object 'scanner' will exist on the current page and can be used to interact directly with the code11checkDigitCount.
To Set code11checkDigitCount parameters via JavaScript use the following syntax: scanner.Parameter = Value;

e.g. scanner.code11checkDigitCount = Value;

Parameters

Items listed in this section indicate parameters, or attributes which can be set.

NamePossible ValuesDescriptionDefault Value
code11checkDigitCount:[Value] none/one/twoif value is "none" then String to verify no check digits,if value is one then String to verify 1 check digit. if value is "two" then String to verify 2 check digits. N/A

Requirements

RhoElements Version1.0.0 or above
Supported DevicesAll supported devices.
Minimum RequirementsScanner or Imager module and device that supports Code11.
PersistenceTransient - Decoder settings are only guaranteed to persist until the Scanner is disabled

HTML/JavaScript Examples

The following example enables the scanner to read only Code11 labels with the CheckDigitCount property set to verify one check digit

<META HTTP-Equiv="scanner" Content="Code11:enabled">
<META HTTP-Equiv="scanner" Content="Code11CheckDigitCount:one">
<META HTTP-Equiv="scanner" Content="enabled">

Above example can also be written as shown below:

<META HTTP-Equiv="scanner" Content="Code11:enabled;Code11CheckDigitCount:one;enabled">

or

<META HTTP-Equiv="scanner-Code11" Content="enabled">
<META HTTP-Equiv="scanner-Code11CheckDigitCount" Content="one">
<META HTTP-Equiv="scanner-enabled" Content="SCN1">