Reputation: 2018
How can I know which (default) font is used when the interpretation line of a barcode is printed using this ZPL command:
^BCN,40,Y,N,N,A
I would like to use the same font for the other fields...
When I know which font is used, I intend to use the ZPL ^A
command to apply it to the other fields.
Upvotes: 2
Views: 1440
Reputation: 2007
In the Zebra ZPL II Programming Giude in the section of the ^BC
command it is explained how one can use different font settings for the interpretation line using the ^A
command (firmware x.11.x or higher required):
^XA
^FO50,200
^A0N,40,30^BCN,150,Y,N,Y
^FD>;>80012345123451234512^FS
^XZ
Since you don't have one specified in your example, the default ^CF
font is used, as stated in the section of the ^A
command.
If you also have no ^CF
command in your ZPL code, then default font A is used!
Upvotes: 0