See Also Examples Applies To
Returns the Y position (in pixel) of the bottom-right corner of a barcode detected by the BarcodeDataMatrixReaderDoScan function.
Syntax
object.BarcodeDataMatrixReaderGetBarcodeY4 (BarCodeNo)
The BarcodeDataMatrixReaderGetBarcodeY4 syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
| BarCodeNo | Required. Long. Barcode index. Must be between 1 and BarcodeDataMatrixReaderGetBarcodeCount returned value. |
Returns
Long. The barcode Y position of the bottom-right corner.
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()