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
 

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 = 1

Visual Basic using the OCX

[form.]SoftekBarcode.LineJump = value

Visual Basic using the DLL

Private Declare Function stGetLineJump Lib "SoftekBarcode" () As Long
Private Declare Function stSetLineJump Lib "SoftekBarcode" (ByVal newValue As Long) As Long
stSetLineJump (value)
value = stGetLineJump ()

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

 

Visual Basic using COM

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

VB.Net using the DLL

Private Declare Function stGetLineJump Lib "SoftekBarcode" () As Integer
Private Declare Function stSetLineJump Lib "SoftekBarcode" (ByVal newValue As Integer) As Integer
stSetLineJump (value)
value = stGetLineJump ()

VB.Net using the SoftekBarcode Wrapper Class

Dim barcode As SoftekBarcode
..........
barcode.SetLineJump(value)
value = barcode.GetLineJump()

VB.Net using the SoftekBarcodeLib Managed Component

Dim barcode As SoftekBarcodeLib.BarcodeReader
Dim value As Long
..........
barcode = New SoftekBarcodeLib.BarcodeReader()
..........
barcode.LineJump = value
value = barcode.LineJump

Visual C++ Using the OCX

long GetLineJump() ;
void SetLineJump (long value);

Visual C++ Using the DLL

long __stdcall stGetLineJump() ;
long __stdcall stSetLineJump (long value);

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