See Also Examples Applies To
Draws a Code 39 barcode into the native GdPicture 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, nDstLeft, nDstTop, nHeight, bAddCheckSum, nColorARGB)
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 chars Maxi (without checksum). Supported characters: 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-0[space]$/+%$ |
| nDstLeft | Required. Long. Specifies the x-coordinate of the upper-left corner of the bar code. |
| nDstTop | 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 pixel. |
| bAddCheckSum | Optional. Boolean. Default value is False. Set to true to add a checksum at the end of the barcode. |
| nColorARGB | Optional. Long. Default value is Black. 32-bit Color (ARGB) used to draw the bar code. |
Returns
Long. GdPictureStatus
Category
Draw (Bar Codes)