TifSplitPath 

Overview

TifSplitPath is the file path template for splitting multi-page TIF files into sub-files. The sub-file page number is represented by %d in the template. The rule for splitting the TIF file is controlled by the TifSplitMode property.

e.g c:\tmp\output%d.tif

Default value =     NULL

void STSetParameter(hBarcode, ST_TIFF_SPLIT, char *value) ;

void STGetParameter(hBarcode, ST_TIFF_SPLIT, char *value) ;

e.g

// Split into files named output1.tif, output2.tif etc
#include "barcode.h"
char *value = "output%d.tif"  ;
STSetParameter(hBarcode, ST_TIFF_SPLIT, &value) ;