SCREEN Statement

Previous  Next

 

SCREEN mode, [x-pos], [y-pos], [width], [height]

 


 

Sets the mode, position and size of the console window.  The following special mode commands may be supported depending on the implementation:

 

Hide Console                  SCREEN 0

Copy Screen to Clipboard      SCREEN [-1]

 

Example:

 

' Show Console at 10, 10 with VGA size

SCREEN 1, 10, 10, 640, 480

 

' Hide Console Window

SCREEN 0