Tally T5023+ Programming Manual page 49

Multi-functional flat bed printer
Table of Contents

Advertisement

Standard commands
Setting the document length (for example, 6 inches = ESC C NULL 6)
PRINT( char(27,67,0,6))
or
PRINT( char(27),"C", char(0), char(6))
Initializing the printer after printing with line feed
PRINT("text", char(10), char(27),"@")
or
PRINT("text")
PRINT(char( 10))
PRINT(char( 27),"@")
or
PRINTLF("text")
PRINT(char(27),"@")
Printing variable values:
SET counter = 0
REPEAT
SET counter = counter + 1
PRINTLF("This is the line",counter)
UNTIL counter = 10
Enlarging the line spacing successively (n/ 180 inch by means of ESC 3 (n)):
SET N = 0
REPEAT
SET N = N + 1
PRINT(char(27),"3",char(N))
PRINT
(" Line spacing", N,"/180 inch")
UNTIL N = 20
Printing a blank
line:
PRINTLF()
T5023/5023+ - Programming Guide
Notes about command description
:
:
39

Hide quick links:

Advertisement

Table of Contents
loading

This manual is also suitable for:

T5023

Table of Contents