Highlight (ScreenField property): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→Syntax terms) |
||
Line 13: | Line 13: | ||
<tr><th>sfield</th> | <tr><th>sfield</th> | ||
<td>A reference to an instance of a <var>ScreenField</var> object.</td></tr> | <td>A reference to an instance of a <var>ScreenField</var> object.</td></tr> | ||
<tr><th> | <tr><th>newHighlight</th> | ||
<td>An enumeration of type <var>Highlight</var> (see below) setting <var class="term">sfield</var>'s new hightlight.</td></tr> | <td>An enumeration of type <var>Highlight</var> (see below) setting <var class="term">sfield</var>'s new hightlight.</td></tr> | ||
</table> | </table> |
Revision as of 18:04, 20 November 2012
Set or return the highlight attribute for screenfield (ScreenField class)
The Highlight property sets or returns the value of the highlight for a ScreenField. The Highlight enumeration provides the highlight value.
This attribute is initially set for a field by the AddField method.
Syntax
%currentHighlight = sfield:Highlight sfield:Highlight = newHighlight
Syntax terms
%currentHightlight | An enumeration of type Highlight to get sField's current hightlight. |
---|---|
sfield | A reference to an instance of a ScreenField object. |
newHighlight | An enumeration of type Highlight (see below) setting sfield's new hightlight. |
Usage notes
- Under either of these conditions, which are not detectable by the screen methods, the display may not show the intended colors:
- Highlight lets you set highlights regardless of the actual terminal type, although some terminals may not display these attributes correctly.
- Many terminal emulator programs allow local customization of highlighting attributes.
- Default field highlights may be set by the ProtectedHighlight or UnprotectedHighlight properties.
Examples
For an example using Highlight method calls, see "Screen object sample code".