See Also Examples Applies To
Releases from memory all information about latest barcode detection.
Syntax
object.BarcodeDataMatrixReaderClear ()
The BarcodeDataMatrixReaderClear syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
Category
2D DataMatrix Barcode Recognition
Visual Basic Sample
Detect and read barcode from bitmap
Object.CreateImageFromFile("c:\test.tif")
Object.BarcodeDataMatrixReaderDoScan()
For i = 1 To Imaging1.BarcodeDataMatrixReaderGetBarcodeCount
MsgBox "Value: " + Object.BarcodeDataMatrixReaderGetBarcodeValue(i)
Next i
Object.BarcodeDataMatrixReaderClear()
Object.CloseNativeImage()