Product specifications

SLCS Programming Manual
Rev. 1.24
- 54 -
2-4-5 PV (Print with Variables)
Description
This command is used in template sequence.
The parameters are given by variables.
Syntax
PVp1,[p2]
Parameters
p1 : Number of label sets : 1 ~ 65535
p2 : Number of copies of each label : 1 ~ 65535
Example
TS’Template1’ // Template Store Start
SV00,20,N,’Please Input the Name :’ // Declare(Set) variable V00
SV01,5,N,’Input Number of label sets :’ // Declare(Set) variable V01
SV02,5,N,’Input Number of label copies :’ // Declare(Set) variable V02
T50,30,3,1,1,0,0,N,N,V00 // Write V00 to image buffer
PVV01,V02 // Print V00, V02 copies, V01 sets
TE // Template Store End
TR’Template1’ // Recall Template1
? // Start to get data for variables
This is PV Test // data for V00
2 // data for V01
1 // data for V02
*** Start Printing as soon as data for all variables(and counters) are entered. ***