OS/2 Procedures Language 2/REXX


Inf-HTML [About][Toc][Index] 0.9b (c) 1995 Peter Childs


SysTextScreenSize

 
 Function: SysTextScreenSize 
 Syntax:   result = SysTextScreenSize() 
      result    The size of the screen.  The format of the result string 
                is 'row col'. 
 Purpose:  This function returns the size of the screen. 
 

 /* Example */
 call RxFuncAdd 'SysTextScreenSize', 'RexxUtil', 'SysTextScreenSize'
 parse value SysTextScreenSize() with row col
 say 'Rows='row', Columns='col
 
 

Inf-HTML End Run - Successful