Epson 4100 Printer User Manual


 
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."