Enum BarcodeFormat
An enumeration of barcode formats.
Examples
var configuration = {
autoLoadUserInfo: true,
userInfo: {
"Ean 8": {
"BarcodeFormat": "EAN_8",
"BarcodeValue": "1234567"
},
"Ean 13": {
"BarcodeFormat": "EAN_13",
"BarcodeValue": "123456789012"
},
"Qr Code": {
"BarcodeFormat": "QR_CODE",
"BarcodeSubType": "Url",
"Url": "https://example.com"
}
}
};
Fields
| Name | Description |
|---|---|
| CODE_128 | Design element representing a barcode in the Code 128B format. |
| DATA_MATRIX | Design element representing a DataMatrix code. |
| EAN_13 | Design element representing a linear EAN-13 code. |
| EAN_8 | Design element representing a linear EAN-8 code. |
| QR_CODE | Design element representing a QR code. Together with QR codes, you can specify BarcodeSubType. |
| UPC_A | Design element representing a 13-digit UPC-A code. |
| UPC_E | Design element representing an 8-digit UPC-E code. |