See Also Examples Applies To
Draws a Code 128 barcode into the native GdPicture image. Code 128 is a very high density alphanumeric bar code. The symbol can be as long as necessary to store the encoded data. It is designed to encode all 128 ASCII characters, and will use the least amount of space for data of 6 characters or more of any 1-D symbology.
Syntax
object.BarCodeDraw128 (sCode, nDstLeft, nDstTop, nHeight, nColorARGB)
The BarCodeDraw128 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. (no length limitation). must be char of the ascii 128 table. |
| 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. |
| nColorARGB | Optional. Long. Default value is Black. 32-bit Color (ARGB) used to draw the bar code. |
Returns
Long. GdPictureStatus
Category
Draw (Bar Codes)