Purpose

.HighlightColor allows you to specify which color is used to distinguish a selection region on a Paging Cycle object.
 

Syntax

ObjectReference.HighlightColor = Value
 

Operation

ObjectReference is the Tag Name of the Paging Cycle object
Value
is valid
alphanumeric variable or string literal.
 

Remarks

The value of this property can only be set, not retrieved.

L
ogical color names are defined in the Application Definitions File.  

If this property is not set, the default Windows highlight color will be used.

The color selected should be visually distinct from those chosen for the .OddColor and EvenColor colors.
 

Example

To set the .HighlightColor of a Paging Cycle whose Tag Name is 2OrderScreen" to green:

OrderScreen.HighlightColor = "GREEN"

Or:

OrderScreen.HighlightColor = "0,255,0"

Or:

$GREEN = "GREEN"
OrderScreen.HighlightColor = $GREEN
 

Comment on this topic

Topic ID: 510063