Code128ExtendedParameters
Contents
[
Hide
]Code128ExtendedParameters class
Stores special data of Code128 recognized barcode Represents the recognized barcode’s region and barcode angle
new Code128ExtendedParameters()
Example:
//This sample shows how to get code128 raw values
let generator = new BarcodeGenerator(EncodeTypes.Code128, "12345");
generator.save("test.png");
let reader = new BarCodeReader("test.png", null, DecodeType.CODE_128);
let results = reader.readBarCodes();
for(let i = 0; i < results.length; i++)
{
let result = results[i];
console.log("BarCode Type: " + result.getCodeTypeName());
console.log("BarCode CodeText: " + result.getCodeText());
console.log("Code128 Data Portions: " + result.getExtended().getCode128());
}
Methods
| Name | Description |
|---|---|
| equals(obj) | Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value. |
| getCode128DataPortions() | Gets Code128DataPortion array of recognized Code128 barcode Value of the Code128DataPortion. |
| hashCode() | Returns the hash code for this instance. |
| toString() | Returns a human-readable string representation of this Code128ExtendedParameters. |
equals(obj)
Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value.
| Parameter | Description |
|---|---|
| obj | An System.Object value to compare to this instance. |
Returns: true if obj has the same value as this instance; otherwise, false.
getCode128DataPortions()
Gets Code128DataPortion array of recognized Code128 barcode Value of the Code128DataPortion.
hashCode()
Returns the hash code for this instance.
Returns: A 32-bit signed integer hash code.
toString()
Returns a human-readable string representation of this Code128ExtendedParameters.
Returns: A string that represents this Code128ExtendedParameters.