Color (ScreenField property)

From m204wiki
Revision as of 19:33, 28 January 2011 by Tom (talk | contribs) (Created page with "This property sets or returns the FieldColor for a ScreenField. FieldColor is a ScreenField class enumeration. This attribute is initially set for a field by the [[Screen class#A...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This property sets or returns the FieldColor for a ScreenField. FieldColor is a ScreenField class enumeration. This attribute is initially set for a field by the AddField method.

  %sfield:Color = fieldcolor
  fieldcolor = %sfield:Color
Color syntax
fieldcolor
A FieldColor enumeration. Valid values (case unimportant) are turquoise, green, blue, red, white, yellow, and pink. The default is blue
%sfield
A reference to an instance of a ScreenField object.
Usage Notes

The Color property lets you set colors regardless of the actual terminal type, although some terminals may not display these attributes correctly. Also, many terminal emulator programs allow local customization of color attributes. Under either of these conditions, which are not detectable by the screen methods, the display may not show the intended colors.

For an example using Color method calls, see “Screen class example”.