ExtendedCode39 

Overview

When True the toolkit will attempt to decode Code 39 barcodes using the extended symbol set. The extended symbol set uses 2 normal Code 39 characters to represent each character and contains the full ASCII character set.

Note that if the toolkit is unable to decode the string in the extended symbol set then it is left as a normal Code 39 barcode.

Default Value: False

void STSetParameter(hBarcode, ST_EXTENDED_CODE39, uint16 *value) ;

void STGetParameter(hBarcode, ST_EXTENDED_CODE39, uint16 *value) ;

e.g

// Read Extended Code 39 barcodes
#include "barcode.h"
uint16 value = 1 ;
STSetParameter(hBarcode, ST_EXTENDED_CODE39, &value) ;