BarcodeControl Class
|
||
BarText Property
This is the data that is to be encoded in the barcode. Syntax Possible Valuesobject.BarText [ = sBarCode ]
|
||
BarType Property
Returns or sets a value indicating the type of bar code symbol (symbology) to be generated by a BarCode .NET control object. Syntax Possible Valuesobject.BarType [ = eBarType ]
|
||
Code128CharSet Property
Returns or sets the Code 128 character set. Syntax Possible Valuesobject.Code128CharSet [ = eCode128CharSet ]
|
||
BarAlign Property
Returns or sets a barcode alignment. Syntax Possible Valuesobject.BarAlign [ = eBarAlign ]
|
||
ShowText Property
Returns or sets a value that determines whether to print the human readable text version of a barcode message. Syntax Possible Valuesobject.ShowText [ = bShowText ]
|
||
TextBottomTop Property
Returns or sets a value that determines whether to print the human readable text above all bar codes produced by the BarCode control. Syntax Possible Valuesobject.TextBottomTop [ = bTextBottomTop ]
|
||
TextAlign Property
Returns or sets a value indicating how to align the human readable text. Syntax Possible Valuesobject.TextAlign [ = eTextAlign ] Remarks The EAN1, EAN2 and EAN3 values are only valid for EAN and UPC symbologies. |
||
TxtFullIndents Property
Returns or sets the value indicating whether to extend human readable text in a barcode or not. This property is only valid for TextAlignment.TxtFull, TextAlignment.TxtEAN1, TextAlignment.TxtEAN2 and TextAlignment.TxtEAN3. Syntax Possible Valuesobject.TxtFullIndents [ = bTxtFullIndents ]
|
||
TextColor Property
Returns or sets the color of all human readable text in a bar code. Syntax Possible Valuesobject.TextColor [ = sColor ]
|
||
CalcCheck Property
Returns or sets a value that determines whether to calculate an optional check digit in the human readable portion of a bar code symbol. Syntax Possible Valuesobject.CalcCheck [ = bCalcCheck ] Remarks This option is only valid for symbologies that support an optional check digit. |
||
ShowCheck Property
Returns or sets a value that determines whether to include an optional check digit in the human readable portion of a bar code symbol. Syntax Possible Valuesobject.ShowCheck [ = bShowCheck ] Remarks This option is only valid for symbologies that support an optional check digit. |
||
ShowStSt Property
Returns or sets a value that determines whether to show start/stop symbol in the human readable portion of a bar code symbol. Syntax Possible Valuesobject.ShowStSt [ = bShowStSt ] Remarks This option is only valid for symbologies that support a start/stop symbols. |
||
ShowQuietZone Property
Returns or sets a value that determines whether to include quiet zones at either end of all linear bar code symbols. Syntax Possible Valuesobject.ShowQuietZone [ = bShowQuietZone ] Remarks Quiet Zones are small areas of blank space at either end of a bar code image. This space helps to insure that a bar code reader will be able to correctly determine the true beginning and end of a bar code symbol. Most bar code symbology specifications require quiet zones therefore it is highly recommended that you enable this option. |
||
ShowGuard Property
Returns or sets a value that determines whether to show the guard bars. Syntax Possible Valuesobject.ShowGuard [ = bShowGuard ] Remarks This option is only valid for EAN and UPC symbologies. |
||
Orientation Property
Returns or sets the orientation of the barcode. Syntax Possible Valuesobject.Orientation [ = eOrientation ]
|
||
ForeColor Property
Returns or sets the foreground color of all bars in a bar code object. Syntax Possible Valuesobject.ForeColor [ = sColor ]
|
||
BackColor Property
Returns or sets the background color of a bar code. Syntax Possible Valuesobject.BackColor [ = sColor ] Remarks The BackColor property is ignored if the Transparent property setting is true. |
||
Transparent Property
Returns or sets a value indicating whether the background of a BarCode .NET control is transparent or opaque. Syntax Possible Valuesobject.Transparent [ = bTransparent ]
|
||
Font Property
Returns or sets a Font object. Syntax Possible Valuesobject.Font [ = fFont ]
|
||
Wide2NarrowRatio Property
Returns or sets the width ratio between the wide and narrow bars in the Code 39, Interleaved 2 of 5, Industrial 2 of 5, Codabar, MSI, ITF 14 and Code 11. Syntax Possible Valuesobject.Wide2NarrowRatio [ = fWide2NarrowRatio ]
|
||
NonPrintingToTxt Property
Returns or sets the value indicating whether nonprintable chars should be converted into their text representation. For instance, if a barcode has the hexadecimal char 00h in it, in the human readable text this character will be replaced with "NULL", 0Dh will be replaced with "CR", etc. If this property is set to False and there are nonprintable chars, such chars will be just skipped. This property makes sense only for barcodes that can encode the full ASCII char set, e.g. Code 39 Extended or Code 93 Extended. For example: Syntax Possible Valuesobject.NonPrintingToTxt [ = bNonPrintingToTxt ]
|
||
JPEGQuality Property
Returns or sets the value indicating the image quality in the JPEG format. This property makes sense only if the SaveToImageFile method is used and the barcode is saved to a JPEG file. Syntax Possible Valuesobject.JPEGQuality [ = lJPEGQuality ]
|
||
IsBarTextOk Property
Returns the value indicating whether the BarText property is set correctly. Syntax Possible Valuesobject.IsBarTextOk
|
||
MinBarcodeWidth Property
Returns the value indicating the smallest possible barcode width with its current properties. This value is always returned in pixels. Mind that this property does not depend on the barcode оrientation and determines the barcode width perpendicular to the bars. For example: Syntax Possible Valuesobject.MinBarcodeWidth Remarks Be careful because this method returns exactly the smallest possible barcode width in pixels, i.e. the narrowest bar will have the width of 1 pixel. If you print a barcode with such width on a high-resolution printer, a scanner may fail to read it. |
||
BarWidthReduction Property
Returns or sets a percentage value for the reduction or gain of the width of the bars in a BarCode .NET control. Syntax Possible Valuesobject.BarWidthReduction [ = lBarWidthReduction ] Remarks The BarWidthReduction property allows you to set a Reduction or Gain factor ranging from 99 (% reduction) to -99 (% gain). The default value for the BarWidthReduction parameter is zero. Specifying a non-zero value for the BarWidthReduction parameter causes the BarCode .NET control to reduce or enlarge the width of all solid bars in a bar code. Bar Width Reduction is often necessary to compensate for ink spread when generating bar codes that will be used in wet ink printing processes (i.e. printing presses). |