Barcode93
Argument | Type | Range | Default | Note |
---|---|---|---|---|
left | num | -inf..+inf | (required) | |
top | num | -inf..+inf | (required) | |
width | num | 0..inf | (required) | |
height | num | 0..inf | (required) | |
text | str | 0..100 | (required) | Max. 100 chars. |
color | rgba | 0..255 | black |
Examples
Description
The Barcode93() function makes it possible to create Code 93 barcodes.
Examples:
| BARCODE_93_01 |
1 | /* Note: Using a high print resolution is recommended for all types of barcodes. */ |
2 | OpenDrawing(280;100;print) |
3 | Barcode93(20;20;240;60;"0123456789ABCDEF") |
4 |
| BARCODE_93_02 |
1 | /* Note: Using a high print resolution is recommended for all types of barcodes. */ |
2 | OpenDrawing(280;100;print) |
3 | Barcode93(20;20;240;60;"0123456789ABCDEF") |
4 | AddText(140;95;"0123456789ABCDEF";Verdana;12;plain;black;center) |
5 |
| BARCODE_93_03 |
1 | /* Note: Using a high print resolution is recommended for all types of barcodes. */ |
2 | OpenDrawing(140;280;print) |
3 | OpenView(-70;70;280;100;-90) /* Requires xmCHART 5 or higher. */ |
4 | Barcode93(10;20;240;60;"0123456789ABCDEF") |
5 | AddText(130;95;"0123456789ABCDEF";Verdana;12;plain;black;center) |
6 | /* Background() // Uncomment while positioning the barcode. */ |
7 | |
8 | /* Background() // Uncomment while positioning the barcode. */ |
9 |