NET/MASTER Network Control Language (NCL) Reference Manual
&SYS.PANEL.FKEYC
System Variables
5–74 106126 Tandem Computers Incorporated
&SYS.PANEL.FKEYC The &SYS.PANEL.FKEYC system variable contains the value specified with the
command SYSPARMS SPFKEYC. This is the value for the operand COLOR in
specifying the display characteristics of left and right titles and function key
descriptions on a panel. The default value is TURQUOISE.
&SYS.PANEL.FKEYC
Considerations
A new value can be assigned to this variable only by using the command
SYSPARMS SPFKEYC. See the example that follows.
An attempt to change this variable to an invalid color produces an error. Valid
values are BLUE, GREEN, PINK, RED, TURQUOISE, WHITE, and YELLOW.
See the panel statement #FLD in Section 6, “Panel Control Statements.”
See also the other system variables that relate to panels. They all begin with the
letters &SYS.PANEL.
Example
The following example displays the &SYS.PANEL.FKEYC system variable and shows
how to change it. Initially it is TURQUOISE; after the change it becomes BLUE:
PROC:PROCEDURE
SAY "&SYS.PANEL.FKEYC = " &SYS.PANEL.FKEYC
INTCMD "SYSPARMS SPFKEYC=BLUE"
INTREAD
INTCONT
SAY "&SYS.PANEL.FKEYC NOW = " &SYS.PANEL.FKEYC
END PROC