Function MaxRow() Foundation
Determines the maximum (bottom) visible screen row on screen or in a window.
Syntax
MaxRow() --> nMaxRow
Return
MaxRow() returns an integer numeric value which is the position of the bottom visible row on the screen or in a window.
Description
The screen function MaxRow() determines the maximum number of visible rows in which characters are output on the screen or in a window. The numbering of rows begins with zero and ends with MaxRow().
Examples
// The function MySetMode() uses MaxRow() and MaxCol() to save
// the previous size when switching the video mode.
FUNCTION MySetMode( aRowCol ) // aRowCol is an array with
// two elements: { nMaxRow, nMaxCol }
LOCAL aOldSize := { MaxRow()+1, MaxCol()+1 }
IF .NOT. aRowCol == NIL
SetMode( aRowCol[1], aRowCol[2] )
ENDIF
RETURN aOldSize
Feedback
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.