Citizen iDP3221 Photo Scanner User Manual


 
iDP3221 User’s Manual
79
CITIZEN
n=0
n=1
ESC t n
[Function] Selecting the character code table
[Code] <1B>H<74>H<n>
[Range] 0 n 5, n = 255
[Outline] Selecting page "n" on the character code table:
The character code table is selected depending on the value of "n."
"n" means the followings.
n Page on the Character Code Table
0Page0
1Page1
2Page2
3Page3
4Page4
5Page5
255 Page 255 (blank page)
[Default] n = 0
[See Also] Character Code Table
[Sample Program]
LPRINT CHR$ (&H1B) + "t" + CHR$ (0) ;
LPRINT"n=0 ";
FOR C=&HB1 TO &HB5
LPRINT CHR$ (C) ;
NEXT C
LPRINT CHR$ (&HA) ;
LPRINT CHR$ (&H1B) + "t" + CHR$ (1) ;
LPRINT"n=1 ";
FOR C=&HB1 TO &HB5
LPRINT CHR$ (C) ;
NEXT C
LPRINT CHR$ (&HA) ;
[Print Results]