BarcodeOptions

BarcodeOptions()

Initializes a new instance of the BarcodeOptions class with default values.

public BarcodeOptions()

See Also


BarcodeOptions(Rectangle)

Initializes a new instance of the BarcodeOptions class with the rectangular area.

public BarcodeOptions(Rectangle rectangle)
Parameter Type Description
rectangle Rectangle The rectangular area that contains barcodes.

See Also


BarcodeOptions(QualityMode, QualityMode, params string[])

Initializes a new instance of the BarcodeOptions class with quality settings and code types.

public BarcodeOptions(QualityMode imageQuality, QualityMode barcodeQuality, 
    params string[] codeTypes)
Parameter Type Description
imageQuality QualityMode The quality of a source image.
barcodeQuality QualityMode The quality of a source barcode.
codeTypes String[] The types of barcodes to read.

See Also


BarcodeOptions(Rectangle, QualityMode, QualityMode, float?, bool, params string[])

Initializes a new instance of the BarcodeOptions class.

public BarcodeOptions(Rectangle rectangle, QualityMode imageQuality, QualityMode barcodeQuality, 
    float? dimension, bool allowIncorrectBarcodes, params string[] codeTypes)
Parameter Type Description
rectangle Rectangle The rectangular area that contains barcodes.
imageQuality QualityMode The quality of a source image.
barcodeQuality QualityMode The quality of a source barcode.
dimension Nullable`1 The minimal size of the barcode minimal element.
allowIncorrectBarcodes Boolean The value that indicates whether the incorrect barcodes are allowed.
codeTypes String[] The types of barcodes to read.

See Also