87
CODE_TYPE
Purpose To get the type of symbology being decoded upon a successful scan.
Syntax A% = CODE_TYPE
Remarks “A%” is an integer variable to be assigned to the result.
Refer to the above table for code types.
Example
…
CheckCodeType:
IF CODE_TYPE = 65 THEN
BcrType$ = “Code 39”
ELSE IF CODE_TYPE = 66 THEN
BcrType$ = “Italian Pharmacode”
…
END IF
PRINT “Code Type:”, BcrType$
See Also GET_READER_SETTING, READER_SETTING