$FUNCNAME$
  MAXROW()
$CATEGORY$
  TERMINAL/IO
$SUMMARY$
   Determine the maximum visible screen row
$LANG_RU$
         .
$SYNTAX$
     MAXROW() --> nRow
$LANG_RU$
     MAXROW() -->  
$RETURNS$
     MAXROW() returns the row number of the bottommost visible row for
     display purposes.
$LANG_RU$
     MAXROW()      
$DESCRIPTION$
     MAXROW() is a screen function that determines the maximum visible row of
     the screen.  Row and column numbers start at zero in xClipper.

     If you use a C or other extended function to set the video mode, use the
     SETMODE() function so your xClipper application returns the correct
     value for MAXCOL().
$LANG_RU$
     MAXROW()     ,  
           . 
         xClipper   .
$EXAMPLES$
       This user-defined function, ScreenSize(), uses MAXROW() and
	MAXCOL() to return an array containing the current screen size:

	FUNCTION ScreenSize
	   RETURN { MAXROW(), MAXCOL() }
$LANG_RU$
           ScreenSize() 
       MAXROW()  MAXCOL()  ,   , 
         :

       FUNCTION ScreenSize
	  RETURN { MAXROW(), MAXCOL() }
$SEEALSO$
  COL(),MAXCOL(),ROW()
$END$
