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
 

Properties

The way in which you will be able to get and set the properties of the toolkit depend on the interface and the programming language used.

Active X Control (OCX) with Visual Basic and VB.Net

ObjectName.PropertyName = value

e.g SoftekBarcode1.LineJump = 1

Active X Control (OCX) with Visual C++

value = ObjectName.GetPropertyName()
ObjectName.SetPropertyName(value)

Examples:

value = SoftekBarcode1.GetLineJump()
SoftekBarcode1.SetLineJump(value)

SoftekBarcode Class with VB.Net

value = ObjectName.GetPropertyName()
ObjectName.SetPropertyName(value)

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

 

Examples:

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

DLL with Visual Basic, VB.Net, Visual C++ etc

Use Get and Set functions prefixed with "st":

stSetPropertyName (value)
value = stGetPropertyName()

Examples:

value = stGetLineJump()
stSetLineJump(value)

COM Interface with Visual Basic etc

Use Get and Set methods:

value = ObjectName .GetPropertyName()
ObjectName .SetPropertyName(value)

oBar = CreateObject("SoftekATL.Barcode")
.........
oBar.SetLineJump(value)
value = oBar.GetLineJump()

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