Introduction MTB Statements File System Compiler Applications Reference Guide Index

Language Structure Data Division I/O Format Division Procedure Division Mnemonics

(FF)

Mnemonic: (FF)
Discussion: Form feed

The (FF) control code causes the printer to skip to the top of the next page.

Example:
a. 100 FORMAT (FF)
   .
   OPEN (1) "LP1"
   .
   PRINT (1,100)


b. OPEN (1) "LP1"
   .
   PRINT (1) (FF)
This example shows how to perform a form feed operation on the printer named LP1.