Barcode93

Barcode93 ( left ;​ top ;​ width ;​ height ;​ text ;​ color )

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

Barcode93(10;​10;​200;​50;​"0123456789")

Barcode93(20;​20;​200;​50;​"ABCDEFGHIJKLM")

Barcode93(50;​20;​300;​100;​"X2max Software";​darkBlue)

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

CloseDrawing()

BARCODE_93_01
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

CloseDrawing()

BARCODE_93_02
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

CloseView()

8

/* Background() // Uncomment while positioning the barcode. */

9

CloseDrawing()

BARCODE_93_03
Scroll to Top