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