Code25Checksum
Overview
When True the toolkit will only report Code 25 barcodes where the last character is a valid checksum for the rest of the barcode. The toolkit expects a Code 25 checksum to be calculated using the following method:
Default Value: False
void STSetParameter(hBarcode, ST_CODE39_CHECKSUM, uint16 *value) ;
void STGetParameter(hBarcode, ST_CODE39_CHECKSUM, uint16 *value) ;
e.g
// Turn on the Code39Checksum property
#include "barcode.h"
uint16 value = 1 ;
STSetParameter(hBarcode, ST_CODE39_CHECKSUM, &value) ;