ETcVnBarcodeType

Offers linear barcode types to search for.

Syntax

Definition:

enum ETcVnBarcodeType : ULONG
{
    BT_CODABAR        = 4,
    BT_CODE39         = 8,
    BT_CODE93         = 16,
    BT_CODE128        = 32,
    BT_EAN8           = 128,
    BT_EAN13          = 256,
    BT_ITF            = 512,
    BT_UPCA           = 32768,
    BT_UPCE           = 65536,
    BT_ANY            = 99260,
    BT_CODE39EXTENDED = 262144
};

Values

Name

Description

BT_CODABAR

The algorithm searches for Codabar codes.

BT_CODE39

The algorithm searches for Code-39 codes.

BT_CODE93

The algorithm searches for Code-93 codes.

BT_CODE128

The algorithm searches for Code-128 codes.

BT_EAN8

The algorithm searches for EAN-8 codes.

BT_EAN13

The algorithm searches for EAN-13 codes.

BT_ITF

The algorithm searches for ITF codes.

BT_UPCA

The algorithm searches for UPC-A codes.

BT_UPCE

The algorithm searches for UPC-E codes.

BT_ANY

The algorithm searches for any supported linear barcode. If the type of the code is known, it is recommended to select the specific type directly.

BT_CODE39EXTENDED

The algorithm searches for Code-93-Extended codes.