TERMINAL statement
- Last Updated: January 16, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
Changes terminal type during program execution. On UNIX, changes the value of the TERM environment variable.
Note: Does not apply to SpeedScript programming.
Syntax
|
- termid
-
A terminal type string. The termid can also be an expression. The AVM returns an error message if termid is not defined in the PROTERMCAP file. However, termid can be the word TERMINAL. The line TERMINAL=TERMINAL reinitializes the terminal.
Example
This procedure changes the terminal screen width from 80 columns to 132 columns, then back again:
r-seterm.p
|
Notes
- TERMINAL does not change the physical characteristics of a terminal. You must supply a valid terminal type for the existing terminal state.
- The TERMINAL statement reinitializes the function key definitions based on the specified PROTERMCAP entry. If you have used ON statements to change function key definitions, the TERMINAL statement overrides those changes.
- If a subprocedure uses a frame, the frame is composed with the
width that was in effect when the subprocedure was compiled. Changing
the width (terminal type) outside the scope of that procedure will
not change the frame width inside the procedure unless it is recompiled.
The following sequence of statements does not work as intended, because subp.p is not recompiled before its second execution:
r-setrm1.p
|