Writing to the Full Screen

At times, especially during program development, you may wish to write information to the full screen. Using the pre-defined window FULL_WNP lets you write information to the full screen without defining another window in your code. The following code fragment writes to location (5,0) on the full screen:

cs_mv(5, 0, FULL_WNP);

v_st("This writes its output on row 5, starting at column 0.", FULL_WNP);

Output will be written with the full screen window attribute LSYS, unless you change the attribute of FULL_WNP.


Home Contents Previous Next