[Scope]
0 ≤n ≤ 32
[Explanation]
The right margin is the number of characters, which isn’t printed
on the right side of the printing paper.
[Comment]
•
If the printing position is outside the printable area, the command is ignored.
•
The width of the character includes the default character width of the character
spacing
[Example]
unsigned char str[4];
str[0] = 0x1B;
str[1] = 0x51;
str[2] = 3;//
SendDataToPrinter (str, 3); //
set the area of three characters’ width to the
unprintable area on the right side
ESC 1
n
[Name]
set the line spacing
[Type] ASCII
:
ESC
1 n
Decimal:
27
49 n
Hex:
1B
31 n
[Scope] 0 ≤ n ≤ 255 (The default value of ‘n’ is 3)
[Default] n=3
[Explanation]
Set the line spacing to n vertical dot pitch
[Example]
unsigned char str[4];
str[0] = 0x1B;
str[1] = 0x31;
str[2] = 8;
Содержание RD-FH5C7
Страница 57: ...C International standard ASCII ...
Страница 60: ......