
|
<<
Index
>>
|
FutureBasic 5
|
clear lprint
|
|
statement
|
|
Syntax:
clear lprint
Description:
If output has been routed to the printer, clear lprint
forces the Printing Manager to print the current page, without closing the print job. The other ways to print the current page are to execute close lprint
or to exit the program, both of which also cause the print job to be closed.
Note:
Before using clear lprint
or close lprint
, you must route printing to the screen. The following fragment shows how this might be done.
route _toScreen
clear lprint
route _toPrinter
See Also:
page statement; close lprint; def lprint; route _toPrinter; route _toScreen