DatabarOptions

Overview

The DatabarOptions property can be used to set various options for GS1 Databar recognition. All options are turned on by default, but some applications may find it useful to disable certain features for performance reasons.

The property works as a mask and can be constructed from the following values:

Default Value: 255

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

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

e.g

#include "barcode.h"
uint16 value = 31 ;
STSetParameter(hBarcode, ST_DATABAR_OPTIONS, &value) ;