Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7 143
Chapter 2 Program Instructions
LAYOUT END
Field of Application
Statement for stopping the recording of a layout description and saving
the layout (Intermec Direct Protocol only).
Syntax LAYOUT END
Remarks
This statement can only be used in the Intermec Direct Protocol after
a layout has been recorded by means of a LAYOUT INPUT statement.
After a LAYOUT END statement has been executed, no more data will
be added to the layout.
By default, the layout will be saved in the printers permanent memory
("c:"). To speed up the execution it can, as an alternative, be saved in the
temporary memory (see LAYOUT INPUT statement). The layout can be
copied and killed as any other program le.
Example
This example illustrates how the Intermec Direct Protocol is enabled, how
new separators are speci ed, how a layout is stored in the printers temporary
memory, how variable data are combined with the layout, and how a label is
printed. Finally, the Intermec Direct Protocol is disabled:
INPUT ON
FORMAT INPUT "#","@","&"
LAYOUT INPUT "tmp:LABEL1"
FT "Swiss 721 BT"
PP 100,250
PT VAR1$
PP 100,200
PT VAR2$
LAYOUT END
LAYOUT RUN "tmp:LABEL1"
#Line number 1&Line number 2&@
PF
INPUT OFF