Scanner ActiveX Control

BarCodeGetScore

 

Return sureness value of decoding. Score is between 0 (low sureness) and 100 (high sureness).

Public Function BarCodeGetScore( _
   ByVal iIndex  As Integer
) As Integer

 

Parameter

iIndex
the index of barcode.


Return Value

Return sureness value of decoding.

Example

   

Visual Basic Syntax
ibarcodeCount = Me.Scanner1.BarCodeReadFullPage
str1 = "Total " + Str(ibarcodeCount) + " BarCode detected" + Chr(13) + Chr(10)

For i = 0 To ibarcodeCount - 1
strTmp = Me.Scanner1.BarCodeGetType(i) + " score:" + Str(Me.Scanner1.BarCodeGetScore(i)) + " value:" + Me.Scanner1.BarCodeGetValue(i)
str1 = str1 + Chr(13) + Chr(10) + strTmp
Next

MsgBox str1