COLOR phrase
Specifies a video attribute or color. In Progress Version 7 and later, the COLOR phrase is superseded by the FGCOLOR and BGCOLOR options in graphical user interfaces and by the PFCOLOR and DCOLOR options in character interfaces. The COLOR phrase is supported only for backward compatibility.
Note: Does not apply to SpeedScript programming.Syntax
NORMAL, INPUT, MESSAGES
The three standard colors ABL uses for screen displays. ABL uses NORMAL to display fields, INPUT to display input fields, and MESSAGES to display items in the message area.Following are the NORMAL defaults:Following are the INPUT defaults:
- Windows — On a color monitor, the default colors are a light gray background and a blue foreground. On a monochrome monitor, the default underlines fields that require input.
- UNIX — The default colors depend on the type of terminal and how INPUT is defined in the protermcap file, but it is usually underlining.
Following are the MESSAGES defaults:
- Windows — On a color monitor, the defaults are the same as for INPUT. On a monochrome monitor, the default is reverse video.
- UNIX — The defaults depend on the type of terminal and how MESSAGES is defined in the protermcap file, but it is usually reverse video. (The protermcap file supplied with ABL supplies default attributes for NORMAL, INPUT, and MESSAGES for all defined terminals.)
protermcap-attribute
dos-hex-attribute
[ BLINK- ] [ BRIGHT- ] [fgnd-color
] [bgnd-color
]
Names specific colors you want to use for the screen foreground and background. You use this option only if you are using Windows, and usually only if you use a color monitor. Table 14 lists the colors you can use forfgnd-color
andbgnd-color
.
Iffgnd-color
is omitted, then the system uses the foreground corresponding to NORMAL. Ifbgnd-color
is omitted, then the system uses the background corresponding to NORMAL. If NORMAL, INPUT, or MESSAGES is specified forfgnd-color
orbgnd-color
, then the system uses the foreground or background color of the specified standard color.[ BLINK- ] [ RVV- ] [ UNDERLINE- ] [ BRIGHT- ] [fgnd-color
]VALUE (expression
)ExampleThe following procedure displays a random number of asterisks, in a random color, column, and row in 10 different occurrences. The COLOR statement displays the asterisks in one of the three colors stored in the elements of the hilite array. The COLOR phrase in this example is VALUE ( hilite[ RANDOM( 1,3 ) ]. The DISPLAY statement uses the color determined in the COLOR statement to display a random number of asterisks.
NotesSee also
OpenEdge Release 10.2B
|