214 Epson FX-100 Control Commands

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

Page 234
Image 234
Epson 4100 manual Esc F, Set/Cancel Underline