Altitude
Altitude

Reputation: 79

ZPL: How to vertically stack each letter or Character in a data value on a label

I have a piece of data like this: ABCDEF

Using ZPL (Zibra Programming Language), how can I format the value to print like this:

A
B
C
D
E
F

I am able to rotate text but cannot find a command which will give me the above result.

Upvotes: 0

Views: 970

Answers (1)

banno
banno

Reputation: 1544

Try ^FPV

^XA  
^FO100,50^A0N,30,30^FPV,10^FDABCDEF^FS  
^XZ  

This will also work for Unicode characters that utilize the multibyte shaping.

Upvotes: 1

Related Questions