MaxBarcodesToReadPerPage Property

Description

Gets or sets the maximum number of barcodes to read per page.

Syntax

public int MaxBarcodesToReadPerPage { get; set; }

Data type

int

Example

ReaderOptions option = new ReaderOptions();
option.BarcodeFormats = (
    BarcodeFormat.OneD | 
    BarcodeFormat.QR_CODE | 
    BarcodeFormat.PDF417 | 
    BarcodeFormat.DATAMATRIX
);
option.MaxBarcodesToReadPerPage = 100;

See Also

.NET > Classes > ReaderOptions > BarcodeFormats
.NET > Classes > ReaderOptions > MaxBarcodesToReadPerPage