LineJump
Overview
When the OCX scans an image for a barcode string it does not scan every line of the image. The LineJump setting controls how many scan lines are missed between checks for a barcode. A LineJump value of 1 means that every scan line in the image will be checked. A lower value for LineJump will impact the performance of the OCX but may be useful for poor quality images.
Default value = 9
void STSetParameter(hBarcode, ST_LINE_JUMP, uint32 *value) ;
void STGetParameter(hBarcode, ST_LINE_JUMP, uint32 *value) ;
e.g
// Scan every line of an image
#include "barcode.h"
uint32 value = 1 ;
STSetParameter(hBarcode, ST_LINE_JUMP, &value) ;