See Also Examples Applies To
Draws a Code 39 barcode into the native image. Code 39 is an easy to use alpha-numeric barcode. It is also known as LOGMARS, Code 3 of 9 or the 3 of 9 Code
Syntax
object.BarCodeDraw39 (sCode, nDstX, nDstY, nHeight, bAddCheckSum, nColor)
The BarCodeDraw39 syntax has these parts:
| Part | Description |
| object | Required. An object expression that evaluates to an object in the Applies To list. |
| sCode | Required. String. The barcode string. Must be 39 digits Maxi (without checksum). Supported characters: 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-0[space]$/+%$ |
| nDstX | Required. Long. Specifies the x-coordinate of the upper-left corner of the bar code. |
| nDstY | Required. Long. Specifies the y-coordinate of the upper-left corner of the bar code. |
| nHeight | Required. Long. Specifies the height of the bar code in pixels. |
| bAddCheckSum | Optional. Boolean. Default value is False. Set to true to add a checksum at the end of the barcode. |
| nColor | Optional. Long. Default value is Black. ARGB long color value used to draw the bar code. |
Returns
Remarks
The ImagingStatus constants are defined HERE
Category
Draw (Bar Codes)