Accusoft BarcodeXpress v14.0 - Updated
AccusoftBarcodeXpress14 ActiveX DLL / BarcodeXpress Object / GetBarcodeReaderType Method
An integer value which represents the zero-based index number of the barcode type from the list of barcode types which the barcode engine uses to search for during recognition.
In This Topic
    GetBarcodeReaderType Method
    In This Topic
    Description
    Returns the barcode type at the specified index value from the list of barcode types being searched.
    Syntax
    Visual Basic
    Public Function GetBarcodeReaderType( _
       ByVal readerTypeIndex As Long _
    ) As BC_BarcodeStyle
    Parameters
    readerTypeIndex
    An integer value which represents the zero-based index number of the barcode type from the list of barcode types which the barcode engine uses to search for during recognition.
    Remarks

    Valid values are from 0 to GetBarcodeReaderTypesCount() - 1.

    The GetBarcodeReaderType method should be called after the GetBarcodeReaderTypesCount which returns the number of searched barcode types.

    Example
    For i = 0 To BarcodeXpress1.GetBarcodeReaderTypesCount - 1
        MsgBox BarcodeXpress1.GetBarcodeReaderType(i)
    Next i
    See Also