Purpose

.HighlightColor allows you to specify which colour 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 colour names are defined in the Application Definitions File.  

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

The colour selected should be visually distinct from those chosen for the .OddColor and EvenColor colours.
 

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