
- 85 -
MAX_BAR_LEN
The maximum number of digits in the barcode. This value is fixed (not variable).
■ Syntax
[VB]
Public Const MAX_BAR_LEN As Integer
[C#]
public const int MAX_BAR_LEN;
[Ex.] Declare a buffer containing a barcode with the maximum number of elements.
[VB] Dim ReadBuf(Scanner.MAX_BAR_LEN) As Byte
[C#] Byte[] ReadBuf = new byte[Scanner.MAX_BAR_LEN];
MAX_2DCODE_LEN
The maximum number of digits in the 2D code. This value is fixed (not variable).
■ Syntax
[VB]
Public Const MAX_2DCODE_LEN As Integer
[C#]
public const int MAX_2DCODE _LEN;
[Ex.] Declare a buffer containing a 2D code with the maximum number of elements.
[VB] Dim ReadBuf(Scanner.MAX_2DCODE_LEN) As Byte
[C#] Byte[] ReadBuf = new byte[Scanner. MAX_2DCODE_LEN];
Comentarios a estos manuales