MinSpaceBarWidth
Overview
MinSpaceBarWidth is the minimum acceptable size for a space between the bars in a barcode. Anything smaller than this value will be ignored. The default value of 0 allows the toolkit to decide on the best value..
Default value = 0
void STSetParameter(hBarcode, ST_MIN_SPACE_BAR_WIDTH, uint16 *value) ;
void STGetParameter(hBarcode, ST_MIN_SPACE_BAR_WIDTH, uint16 *value) ;
e.g
// Set MinSpaceBarWidth to a value of 2
#include "barcode.h"
uint16 value = 4 ;
STSetParameter(hBarcode, ST_MIN_SPACE_BAR_WIDTH, &value) ;