ConvertUPCEToEAN13
Overview
When set to TRUE the toolkit will convert type UPC-E barcodes into EAN-13.
Default value = TRUE
void STSetParameter(hBarcode, ST_CONVERT_UPCE_TO_UPCA, uint16 *value) ;
void STGetParameter(hBarcode, ST_CONVERT_UPCE_TO_UPCA, uint16 *value) ;
e.g
// Turn on conversion from UPC-E to EAN-13
#include "barcode.h"
uint16 value = 1 ;
STSetParameter(hBarcode, ST_CONVERT_UPCE_TO_UPCA, &value) ;