23
22) Inverted character set and reset
:<< ESC { n >>
Code
: [1B] h + [7B] h + n
* [00
≤
n
≤
FF] h
Description : sets or resets the inverted character function
Explanation : n is only valid for the LSB(b0)
LSB (b0) has the following meaning
b0 Description
0 resets inverted character
1 sets
inverted
character
The command is only valid when it is assigned at the beginning of a line.
The default value of n is [00] h.
23) 90
°
clockwise rotated character set and reset
:<< ESC V n >>
Code
: [1B] h + [56] h + n
* [00
≤
n
≤
01] h
Description : sets and resets 90
°
clockwise rotated character.
Explanation : underline cannot be assigned to the 90
°
clockwise rotated
character.
n has the following meaning.
n(hex) description
00
reset 90
°
rotated character
01
set 90
°
rotated character
24) Absolute position set
:<< ESC $ n1 n2>>
Code
:[1B] h + [24] h +n1 +n2
* [00
≤
n1
≤
FF] h
* [00
≤
n2
≤
01] h
Description: print start position is assigned by dots in 1/203rd of inch from the
beginning of line.
*Divide the value of dot by 256, place quotient to n2, and
remainder to n1.
*The print start position is n1 + n2 x 256 from top of the line.
*Setting which exceeds end of line is ignored.
25) Relative position set
:<< ESC ¥ n1 n2>>
Code
: [1B] h + [5C] h + n1 +n2
* [00
≤
n1
≤
FF] h
* [00
≤
n2
≤
01] h
Description : print start position is assigned by dots from current position
in unit of 1/203rd of inch.
Right direction is treated as plus and left as minus.
For assigning N dots in minus direction (left), it will be:
N dots = 65536 - N
Divide dots by 256, quotient is n2 and remainder is n1.
Assigning
beyond
the
end of a line is neglected