Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7 57
Chapter 2 Program Instructions
CUT ON/OFF
Field of Application
Statement enabling or disabling automatic cutting after PRINTFEED
execution and optionally adjusting the media feed before and after
the cutting.
Syntax CUT [<nexp>] ON|OFF
<nexp> is optionally the length of media to be fed out before cutting
and pulled back after cutting.
Default: CUT OFF
Remarks
This statement makes it possible to enable or disable automatic execution of
a CUT operation directly after the execution of each PRINTFEED statement.
If any extra media feed in connection with the cutting operation is required,
use startadjust and stopadjust setup or specify the desired length of media
to be be fed out before the cutting is performed and pulled back afterwards
in the CUT ON statement.
Example
This program enables automatic cutting and orders the printer to print a text
and feed out an extra amount of strip before cutting the media. The media is
then pulled back the same distance:
10 CUT 280 ON
20 PRPOS 250,250
30 DIR 1
40 ALIGN 4
50 FONT "Swiss 721 BT"
60 PRTXT "Hello everybody!"
70 PRINTFEED
RUN