Gets and sets the type of barcodes to analyze during recognition processing.
public Array BarcodeTypes {get; set;}
public: __property Array* get_BarcodeTypes();
public: __property void set_BarcodeTypes(
Array* value
);
'Declaration
Public Property BarcodeTypes As Array
'Usage
Dim instance As Reader
Dim value As Array
instance.BarcodeTypes = value
value = instance.BarcodeTypes
Property Value
The
BarcodeType set.
// Create BarcodeType Array
System.Array currentBarcodeTypes = new BarcodeType[2];
// Add barcode types
currentBarcodeTypes.SetValue(BarcodeType.Industry2of5Barcode, 0);
currentBarcodeTypes.SetValue(BarcodeType.Interleaved2of5Barcode, 1);
// Set the BarcodeTypes property
barcodeXpress.reader.BarcodeTypes = currentBarcodeTypes;