ReaderOptions Struct

Sets the number and type when reading barcode data.

Syntax

typedef struct tagReaderOptions {
    int iMaxBarcodesNumPerPage;
    __int64 llBarcodeFormat;
} ReaderOptions,*pReaderOptions;

Members

iMaxBarcodesNumPerPage llBarcodeFormat

Remarks

The ReaderOptions struct provides members for working with specifying max number and type to read barcode in a single page.

Example

ReaderOptions options = {0};
options.iMaxBarcodesNumPerPage = 100;
options.llBarcodeFormats = (OneD | QR_CODE | PDF417 | DATAMATRIX);

See Also

C > Structs > BarcodeResult
C > Structs > BarcodeResultArray
C > Function > DecodeFile
C > Constant > BarcodeFormat
C > Constant > Error List