Denso BHT-400-CE Reference Manual page 102

Bar code handy terminal class library reference manual
Table of Contents

Advertisement

LastCodeInfo
Acquires information on the code that was read last.
Syntax
[VB]
Public Property ReadOnly
[C#]
public Scanner.CodeInfo
Property
Information on the barcode that was read last
The correlation between the barcode type and values is the same as that for the
InBufferType.
Default value: null (Nothing in VB.NET)
Exceptions
None
[Ex.] Acquire the code type and number of digits in all rows for the data last read.
[VB]
For i = 0 To MyScanner.LastCodeNum
len(i) = MyScanner.LastCodeInfo(i).Len
type(i) = MyScanner.LastCodeInfo(i).Type
Next
[C#]
for (i = 0; i < MyScanner.LastCodeNum; i++) {
len[i] = MyScanner.LastCodeInfo[i].Len
type[i] = MyScanner.LastCodeInfo[i].Type
}
LastCodeInfo
As Scanner.CodeInfo
LastCodeInfo
{get}
- 96 -

Advertisement

Table of Contents
loading

Table of Contents