Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7 277
Chapter 2 Program Instructions
XORMODE ON/OFF
Field of Application
Statement for enabling or disabling the xor/fl ip mode of Intermec
Fingerprint in connection with graphical operations.
Syntax XORMODE ON|OFF
Remarks
When XORMODE is set ON, dots are reversed, as opposed to set, by all
graphical operations except bar codes. This means that if, for example two
black lines cross, the intersection will be white. If XORMODE is set to
OFF, the intersection will be black.
The XORMODE statement will only have effect if issued on a program
line with a line number.
Default is XORMODE OFF. XORMODE is automatically set to default
when a PRINTFEED statement is executed.
Example
The following program illustrates the difference between XORMODE ON
and XORMODE OFF. The two lines to the left are drawn with XORMODE
disabled and the lines to the right with XORMODE enabled.
10 XORMODE OFF
20 PRPOS 0,50
30 PRLINE 300,30
40 DIR 4
50 PRPOS 100,0
60 PRLINE 200,30
70 XORMODE ON
80 DIR 1
90 PRPOS 400,50
100 PRLINE 300,30
110 DIR 4
120 PRPOS 500,0
130 PRLINE 200,30
140 PRINTFEED
RUN