Dynamsoft.Barcode.BarcodeFormat Enumeration
Description
An enumeration that describes all supported barcode formats.
-
Allowed Values Hex Value Barcode Type CODE_39 0x1 Code 39 CODE_128 0x2 Code 128 CODE_93 0x4 Code 93 CODABAR 0x8 Codabar ITF 0x10 Interleaved 2 of 5 EAN_13 0x20 EAN-13 EAN_8 0x40 EAN-8 UPC_A 0x80 UPC-A UPC_E 0x100 UPC-E INDUSTRIAL_25 0x200 Industrial 2 of 5 OneD 0x3FF One-D barcode PDF417 0x2000000 PDF417 QR_CODE 0x4000000 QRCode DATAMATRIX 0x8000000 DATAMATRIX
Remarks
The formats can be combined like this: BarcodeFormat.OneD | BarcodeFormat.QR_CODE.
Example
ReaderOptions option = new ReaderOptions();
option.BarcodeFormats = (BarcodeFormat.OneD | BarcodeFormat.QR_CODE | BarcodeFormat.PDF417 |BarcodeFormat.DATAMATRIX);
See Also
.NET > Classes > ReaderOptions > BarcodeFormats
.NET > Classes > ReaderOptions > MaxBarcodesToReadPerPage