NET/MASTER Network Control Language (NCL) Reference Manual
&SYS.PANEL.INPUTH
System Variables
106126 Tandem Computers Incorporated 5–79
&SYS.PANEL.INPUTH The &SYS.PANEL.INPUTH system variable contains the value specified with the
command SYSPARMS SPINPUTH. This is the value for the operand HLITE in
specifying the display mode of input fields on a panel. The default value is USCORE.
&SYS.PANEL.INPUTH
Considerations
A new value can be assigned to this variable only by using the command
SYSPARMS SPINPUTH. See the example that follows.
An attempt to change this variable to an invalid value produces an error. Valid
values are BLINK, NONE, REVERSE, and USCORE.
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.INPUTH system variable and
shows how to change it. Initially it is USCORE; after the change it becomes BLINK:
PROC:PROCEDURE
SAY "&SYS.PANEL.INPUTH = " &SYS.PANEL.INPUTH
INTCMD "SYSPARMS SPINPUTH=BLINK"
INTREAD
INTCONT
SAY "&SYS.PANEL.INPUTH NOW = " &SYS.PANEL.INPUTH
END PROC