MinLength
Overview
MinLength defines the smallest length for a barcode string, including checksum characters.
Default value = 2
void STSetParameter(hBarcode, ST_MIN_LEN, uint16 *value) ;
void STGetParameter(hBarcode, ST_MIN_LEN, uint16 *value) ;
e.g
// Ignore all barcodes with length < 5
#include "barcode.h"
uint16 value = 5 ;
STSetParameter(hBarcode, ST_MIN_LEN, &value) ;< /P >