Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact us Request to publish your help manuals Request to remove your help manuals

Introduction
 » Softek Barcode Reader
Barcode Toolkit Overview
 » Toolkit Interfaces
 » Supported Barcode Types
 » Program Sequence
 » Performance Considerations
Barcode Toolkit Examples
 » Visual Basic Using DLL
 » Visual Basic Using OCX
 » VB.Net
 » Borland Delphi
Methods
 » Methods
 » GetBarString
 » GetBarStringPos & GetBarStringRect
 » GetBarStringType
 » GetBarStringDirection
 » ScanBarCode
 » ScanBarCodeFromBitmap
 » ScanBarCodeFromDIB
 » SetScanRect
Properties
 » Properties
 » AllowDuplicateValues
 » BitmapResolution
 » Code39Checksum
 » ColorThreshold
 » ConvertUPCEToEAN13
 » LineJump
 » ErrorCorrection
 » ExtendedCode39
 » MaxLength
 » MinLength
 » MinOccurrence
 » MinSpaceBarWidth
 » MultipleRead
 » NoiseReduction
 » PageNo
 » Pattern
 » PdfBpp
 » PdfDpi
 » Photometric
 » PrefOccurrence
 » QuietZoneSize
 » ReadCodabar
 » ReadCode128
 » ReadCode25
 » ReadCode25ni
 » ReadCode39
 » ReadEAN13
 » ReadEAN8
 » ReadUPCA
 » ReadUPCE
 » ReadPatchCodes
 » ReadPDF417
 » ReadNumeric
 » ScanDirection
 » ShowCheckDigit
 » SkewTolerance
 » TifSplitMode
 » TifSplitPath
 » UseOverSampling
 

TifSplitMode

Overview

TifSplitMode controls the way in which multi-page TIF files are split into sub-files when the TifSplitPath property is set. A value of 0 means that the sub-files will each start on a page with a bar code (or page 1). A value of 1 means that each sub-file will terminate on a page with a barcode (or the last page).

For example, a 6 page TIF file with barcodes on pages 2 and 5 will split as follows:

TifSplitMode = 0: First sub-file contains page 1. Second sub-file contains pages 2, 3 and 4. Third sub-file contains pages 5 and 6.

TifSplitMode = 1: First sub-file contains pages 1 and 2. Second sub-file contains pages 3, 4 and 5. Third sub-file contains page 6.

Default value = 0

Visual Basic using the OCX

[form.]SoftekBarcode.TifSplitMode = value

Visual Basic using the DLL

Private Declare Function stGetTifSplitMode Lib "SoftekBarcode" () As Short
Private Declare Function stSetTifSplitMode Lib "SoftekBarcode" (ByVal newValue As Short) As Short
stSetTifSplitMode (value)
value = stGetTifSplitMode ()

Barcode Generator Bookkeeping software Barcode software
Business financial software Billing software Accounting software

 

Visual Basic using COM

oBar = CreateObject("SoftekATL.Barcode")
.........
oBar.TifSplitMode = value
value = oBar.TifSplitMode

VB.Net using the DLL

Private Declare Function stGetTifSplitMode Lib "SoftekBarcode" () As Short
Private Declare Function stSetTifSplitMode Lib "SoftekBarcode" (ByVal newValue As Short) As Short
stSetTifSplitMode (value)
value = stGetTifSplitMode ()

VB.Net using the SoftekBarcode Wrapper Class

Dim barcode As SoftekBarcode
..........
barcode.SetTifSplitMode(value)
value = barcode.GetTifSplitMode()

VB.Net using the SoftekBarcode Wrapper Class

Dim barcode As SoftekBarcode
..........
barcode.SetTifSplitMode(value)
value = barcode.GetTifSplitMode()

VB.Net using the SoftekBarcodeLib Managed Component

Not implemented.

Visual C++ Using the OCX

BOOL GetTifSplitMode();
void SetTifSplitMode(BOOL value) ;

Visual C++ Using the DLL

BOOL __stdcall stGetTifSplitMode();
BOOL __stdcall stSetTifSplitMode(BOOL newValue);

Home | Contact us | Request to publish your help manuals | Request to remove your help manuals