NET/MASTER Network Control Language (NCL) Reference Manual
&SYS.PANEL.TITLEP
System Variables
5–90 106126 Tandem Computers Incorporated
&SYS.PANEL.TITLEP The &SYS.PANEL.TITLEP system variable contains the value specified with the
command SYSPARMS SPTITLEP. This is the default value for the PAD operand for
centered titles in a panel. The default value is the hyphen character (-).
&SYS.PANEL.TITLEP
Considerations
A new value can be assigned to this variable only by using the command
SYSPARMS SPTITLEP. See the example that follows.
An attempt to change this variable to an invalid value produces an error. A valid
value is any single character except the space character.
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.TITLEP system variable and shows
how it might be changed. Initially it is "-"; after the change it becomes "=":
PROC:PROCEDURE
SAY "&SYS.PANEL.TITLEP = " &SYS.PANEL.TITLEP
INTCMD "SYSPARMS SPTITLEP=="
INTREAD
INTCONT
SAY "&SYS.PANEL.TITLEP NOW = " &SYS.PANEL.TITLEP
END PROC