GetReaderOptions Method
Gets barcode read options.
Syntax
const ReaderOptions& GetReaderOptions() const;
Return Value
Barcode read options returned by the reader.
Example
CBarcodeReader reader;
ReaderOptions ro = {0};
ro.llBarcodeFormat = (OneD | QR_CODE | PDF417 | DATAMATRIX); //Expected barcode types to read.
ro.iMaxBarcodesNumPerPage = 100; //Expected barcode numbers to read.
reader.SetReaderOptions(ro);
ReaderOptions ro2 = reader.GetReaderOptions();
See Also
C++ > Class > CBarcodeReader > SetReaderOptions
C++ > Class > CBarcodeReader > GetBarcodes