BarcodeSupplementTypeEnum
BarcodeSupplementTypeEnum enumeration constants are used to denote the types of supplementary barcodes that can be recognized by ABBYY FineReader Engine. The barcodes of the EAN 8, 13, UPC-A, and UPC-E types may include supplementary barcodes which may contain 2 or 5 digits.
typedef enum {
BS_Void = 0x00000001,
BS_2Digits = 0x00000002,
BS_5Digits = 0x00000004,
BS_Autodetect = BS_Void | BS_2Digits | BS_5Digits
} BarcodeSupplementTypeEnum;
Elements
Name | Description |
---|---|
BS_2Digits | 2-digit supplementary barcode. |
BS_5Digits | 5-digit supplementary barcode. |
BS_Autodetect | Forces ABBYY FineReader Engine to automatically detect the supplementary barcode type during recognition. |
BS_Void | No supplementary barcode. |
Used in
03.07.2024 8:50:25