MaxLength 

Overview

MaxLength defines the largest length for a barcode string, including checksum characters.

Default value =     99

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

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

e.g

// Ignore all barcodes with length > 10
#include "barcode.h"
uint16 value = 10 ;
STSetParameter(hBarcode, ST_MAX_LEN, &value) ;