No Parameter
Return Value
Return the number of barcode detected, if return value smaller than 0, it mean failed.
Example
|
Visual Basic Syntax ImageViewer1.LoadMultiPage "c:\source.tif",0 ibarcodeCount = Me.ImageViewer1.BarCodeReadFullPage str1 = "Total " + Str(ibarcodeCount) + " BarCode detected" + Chr(13) + Chr(10)
For i = 0 To ibarcodeCount - 1 strTmp = Me.ImageViewer1.BarCodeGetType(i) + " score:" + Str(Me.ImageViewer1.BarCodeGetScore(i)) + " value:" + Me.ImageViewer1.BarCodeGetValue(i) str1 = str1 + Chr(13) + Chr(10) + strTmp Next
MsgBox str1
|
|
|
|