VISOVERLAY (Statement)


Display draw screen information on the monitor.


VISOVERLAY <number>


<number>
Specifies draw screen display (0 to 3).
0: Does not display the draw screen.
1: Displays draw screen 0.
2: Displays draw screen 1.
3: Displays both draw screens 0 and 1 at the same time.



VISOVERLAY 3
'Set the destination screen to draw
VISSCREEN 1, 0
VISCLS 0
VISLOC 10, 10
'Set the position to display
VISPRINT "Draw on the draw screen 0"
'Draw characters on the screen
VISSCREEN 1, 1
'Set the destination screen to draw
VISLOC 10, 11
'Set the position to display
VISPRINT "Draw on draw screen 0"
'Draw characters on the screen
VISOVERLAY 0
'Stop displaying the draw screen
DELAY 5000
'Stop for 5 seconds
VISOVERLAY 1
'Display draw screen 0 on the monitor
DELAY 5000
'Stop for 5 seconds
VISOVERLAY 2
'Display draw screen 1 on the monitor
DELAY 5000
'Stop for 5 seconds
VISOVERLAY 3
'Display draw screens 0 and 1 on the monitor


Top