DataBarExtendedParameters

DataBarExtendedParameters

Stores a DataBar additional information of recognized barcode

Constructor

new DataBarExtendedParameters()

Source:
Example
let reader = new BarCodeReader("c:\\test.png", DecodeType.DATABAR_OMNI_DIRECTIONAL);
reader.readBarCodes().forEach(function(result, i, results)
{
   console.log("BarCode Type: " + result.getCodeTypeName());
   console.log("BarCode CodeText: " + result.getCodeText());
   console.log("QR Structured Append Quantity: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodesQuantity());
});

Methods

equals(obj)

Returns a value indicating whether this instance is equal to a specified DataBarExtendedParameters value.
Parameters:
Name Type Description
obj DataBarExtendedParameters value to compare to this instance.
Returns:
Type Description
true if obj has the same value as this instance; otherwise, false
.
Source:

hashcode()

Returns the hash code for this instance.
Returns:
Type Description
A 32-bit signed integer hash code.
Source:

is2DCompositeComponent()

Gets the DataBar 2D composite component flag. Default value is false.
Returns:
Type Description
The DataBar 2D composite component flag.
Source:

toString()

Returns a human-readable string representation of this .
Returns:
Type Description
A string that represents this .
Source: