
LastCodeInfo
Acquires information on the code that was read last.
■ Syntax
[VB]
Public Property ReadOnly LastCodeInfo As Scanner.CodeInfo[]
[C#]
public Scanner.CodeInfo() LastCodeInfo {get}
■ Property
Information on the barcode that was read last
The array of CodeInfo class which element count is one (BHT-700B)
The array of CodeInfo class which element count is three (BHT-700Q)The correlation
between the barcode type and values is the same as that for the InBufferType.
Default value:
The array of CodeInfo class which element count is one (BHT-700B)
The array of CodeInfo class which element count is three (BHT-700Q)
The value of members of these items are that len is 0 and type is 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 – 1)
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
}
120
Comentarios a estos manuales