![](/images/new-backgrounds/1264976/264976467x1.webp)
214 Epson
ESC F |
| Emphasized Mode (Bold Strike), OFF |
|
|
|
ASCII: | ESC | F |
Control: | ctrl [ | F |
Decimal: | 27 | 70 |
Hexadecimal: 1B | 46 |
Cancels emphasized printing (bold strike) set with ESC E, ESC ! (n), ESC Az! (n), or SOH Az! (n).
Example
REM PRINT IN BOLD STRIKE
LPRINT CHR$(27);"E";
LPRINT "Now printing in bold strike."
REM CANCEL BOLD STRIKE
LPRINT CHR$(27);"F";
LPRINT "Now printing in single strike."
ESC - |
|
| Set/Cancel Underline |
ASCII: | ESC | - | (n) |
Control: | CTRL [ | - | (n) |
Decimal: | 27 | 45 | (n) |
Hexadecimal: | 1B | 2D | (n) |
Sets and cancels the underline function. n specifies whether the function is set or cancelled as follows:
•n = 1 or 49: Set underline function
•n = 0 or 48: Cancel underline function
Example
REM SET UNDERLINE FUNCTION
LPRINT
LPRINT "Underline function is on."
REM CANCEL UNDERLINE FUNCTION
LPRINT
LPRINT "Underline function is now off."