| Introduction | MTB Statements | File System | Compiler | Applications | Reference Guide | Index |
| Language Structure | Data Division | I/O Format Division | Procedure Division | Mnemonics |
Mnemonic:
| (SB) |
| Hex equivalent: | "08@" |
| Discussion: |
Start background display.
The (SB) control code sets background display mode and causes subsequent characters to be displayed as background (inverse video) characters. This is used for displaying data that is not expected to change, such as prompts and headings. Characteristics of background mode:
|
| Example: |
a. 100 FORMAT (SB);(BF),@(10,0) . PRINT (0,100) b. PRINT (0) (SB);(BF),@(10,0)This example sets the video mode to background (SB), and blank fills the top row of the screen (i.e., row 0) from position 10 to the end of the line. |