Code39NeedStartStop
Overview
When set to TRUE the toolkit will only report Code 39 barcodes that start and end with a * character.
Setting this property to FALSE is not recommended for the following reasons:
Default value = 1
void STSetParameter(hBarcode, ST_CODE39_NEEDS_ASTERISKS, uint16 *value) ;
void STGetParameter(hBarcode, ST_CODE39_NEEDS_ASTERISKS, uint16 *value) ;
e.g
// Disable the need for Code 39 start/stop characters
#include "barcode.h"
uint16 value = 0 ;
STSetParameter(hBarcode, ST_CODE39_NEEDS_ASTERISKS, &value) ;