Previous Next

MESSAGE-LINES function
Returns, as an INTEGER value, the number of lines in the message area at the bottom of the window.
Note:
Syntax 
 
MESSAGE-LINES
Example 
The following example displays a message on each available message line:
 
DEFINE VARIABLE ix AS INTEGER NO-UNDO.
 
DO ix = 1 TO MESSAGE-LINES:
  MESSAGE "This is message line" ix.
END.

Previous Next
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates.