![](https://pdfstore-manualsonline.prod.a.ki/pdfasset/a/12/a12265a4-311e-41f7-9a56-6ef846c974f4/a12265a4-311e-41f7-9a56-6ef846c974f4-bg10f.png)
Operator’s Guide 251
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 CHR$(27);"-";CHR$(1);
LPRINT "Underline function is on."
REM CANCEL UNDERLINE FUNCTION
LPRINT CHR$(27);"-";CHR$(0);
LPRINT "Underline function is off."