Epson LQ-1000 User Manual - Page 66

Print Quality Command, Other Widths, Double-width Printing, LPRINT CHR$27x0, LPRINT This is draft.

Page 66 highlights

Print Quality Command Although you can turn on the draft mode with one of the panel buttons, you can also use a software command to switch between draft and Letter Quality. Enter and run the following program to see how Letter Quality and draft are turned on and off by an ESCape sequence (note that you use a lowercase x, not a capital X, in line 10). NEW 10 LPRINT CHR$(27)"x0"; 20 LPRINT "This is draft." 30 LPRINT CHR$(27)"x1"; 40 LPRINT "This is Letter Quality." This is draft. This is Letter Quality. As you can see in this program, Letter Quality is one of the Epson modes with an ESCape code that uses a letter with the numeral one to turn on the mode and a letter with the numeral zero to turn it off. For these modes, the one or zero can be inside the quotation marks, as shown above, or as a separate character string value, as shown below: 10 LPRINT CHR$(27)"x"CHR$(0); Other Widths The three basic widths (pica, elite, and fifteen) cannot be combined with each other. If one is on, the other two are off. There are, however, two width modes that can be combined with the basic modes and with each other. These two are double-width and condensed. All characters printed by the LQ are widened by double-width and narrowed by condensed. Double-width printing The double-width mode doubles the width of each character. To see double-width pica printing, which is the widest typestyle available on the LQ, enter and run the program below. 5-8

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185

Print Quality Command
Although you can turn on the draft mode with one of the panel
buttons, you can also use a software command to switch between
draft and Letter Quality.
Enter and run the following program to see how Letter Quality and
draft are turned on and off by an ESCape sequence (note that you use
a lowercase x, not a capital X, in line
10).
NEW
10 LPRINT CHR$(27)"x0";
20 LPRINT "This is draft."
30
LPRINT CHR$(27)"x1";
40 LPRINT "This is Letter Quality."
This
is draft.
This is Letter Quality.
As you can see in this program, Letter Quality is one of the Epson
modes with an ESCape code that uses a letter with the numeral one to
turn on
the mode and a letter with the numeral zero to turn it off. For
these modes, the one or zero can be inside the quotation marks, as
shown above, or as a separate character string value, as shown below:
10 LPRINT CHR$(27)"x"CHR$(0);
Other Widths
The three
basic
widths (pica, elite, and fifteen) cannot be combined
with each other. If one is on, the other two are off. There are, how-
ever, two width modes that can be combined with the basic modes
and with each other. These two are double-width and condensed. All
characters printed by the LQ are widened by double-width and nar-
rowed by condensed.
Double-width printing
The double-width mode doubles the width of each character. To see
double-width pica printing, which is the widest typestyle available on
the LQ, enter and run the program below.
5-8