Purpose

.EvenColor allows you to specify which colour is to be applied to the even-numbered records of a Paging Cycle object.
 

Syntax

ObjectReference.EvenColor = 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.

The colour selected should be visually distinct from those chosen for .HighlightColor and OddColor

The default colour is a light cyan. 
 

Example

To set the .EvenColor of a Paging Cycle whose Tag Name is OrderScreen to Green:

OrderScreen.EvenColor = "GREEN"

Or:

OrderScreen.EvenColor = "0,255,0"

Or:

$GREEN = "GREEN"
OrderScreen.EvenColor = $GREEN
 

Comment on this topic

Topic ID: 510056