BarcodeI25
| 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
BarcodeI25(10;10;200;50;"0123456789")
BarcodeI25(50;20;300;100;"71127013886377";darkBlue)
Description
The BarcodeI25() function makes it possible to create Interleaved 2 of 5 barcodes.
Examples:
| | BARCODE_I25_01 |
| 1 | /* Note: Using a high print resolution is recommended for all types of barcodes. */ |
| 2 | OpenDrawing(240;100;print) |
| 3 | BarcodeI25(20;20;200;60;"0123456789") /* Interleaved 2 of 5 barcode. */ |
| 4 |
| | BARCODE_I25_02 |
| 1 | /* Note: Using a high print resolution is recommended for all types of barcodes. */ |
| 2 | OpenDrawing(240;100;print) |
| 3 | BarcodeI25(20;20;200;60;"0123456789") /* Interleaved 2 of 5 barcode. */ |
| 4 | AddText(120;95;"0 1 2 3 4 5 6 7 8 9";Verdana;16;bold;black;center) |
| 5 |
| | BARCODE_I25_03 |
| 1 | /* Note: Using a high print resolution is recommended for all types of barcodes. */ |
| 2 | OpenDrawing(120;260;print) |
| 3 | OpenView(-60;80;240;100;-90) /* Requires xmCHART 5 or higher. */ |
| 4 | BarcodeI25(20;20;200;60;"0123456789") |
| 5 | AddText(120;95;"0 1 2 3 4 5 6 7 8 9";Verdana;16;bold;black;center) |
| 6 | /* Background() // Uncomment while positioning the barcode. */ |
| 7 | |
| 8 | /* Background() // Uncomment while positioning the barcode. */ |
| 9 |