Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 740
Chapter 2 Program Instructions
CLIP
Field of Application
Statement for enabling/disabling the printing of partial elds.
Syntax CLIP [BARCODE [HEIGHT|INFORMATION|X|Y]][ON|OFF]
BARCODE toggles between partial bar code elds enable/disable.
BARCODE HEIGHT clips the height of the bar so the bar code will t
inside the print window. A one-dimensional bar code
may still be readable.
BARCODE INFORMATION clips the bar code lengthwise, so some bars will be
missing, making the bar code unreadable.
BARCODE X clips the part of the bar code that is outside the
X-dimension of the print window.
BARCODE Y clips the part of the bar code that is outside the
Y-dimension of the print window.
ON enables use of partial text, image, line, and box elds.
OFF disables use of partial text, image, line, and box elds.
Remarks
Partial elds means that the rmware will accept and print text, bar code,
image, lines, and box elds even if they extend outside the print window
as speci ed by the printers setup in regard of X-Start, Width, and Length.
Even negative PRPOS values are allowed. However, all parts the elds
outside the print window will be excluded from the printout, that is they will
be clipped at the borders of the print window.
There are two main cases:
CLIP BARCODE [HEIGHT|INFORMATION|X|Y] is used for bar code
elds only. (Note that some bar codes, like Maxicode, consist of images and
should in this context be regarded as image elds.)
CLIP ON|OFF is only used for text, image, line, and box elds.
When the use of partial elds is disabled, the Error 1003, Field out of label
will result if any eld extends outside the print window.
Note the difference between the physical size of the label and the size of
the print window speci ed by the printers setup. It is the latter that decides
were the elds will be clipped.
Example
In this example, only the last part of the text will be printed:
10 CLIP ON
20 PRPOS -100,30
30 PRTXT "INTERMEC PRINTER"
40 PRINTFEED
RUN