Purpose

.OddColor allows you to specify which color is applied to the odd-numbered records of a Paging Cycle.
 

Syntax

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

The color selected should be visually distinct from those chosen for .EvenColor and .HighlightColor.

The default color is
White
 

Example

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

OrderScreen.OddColor = "GREEN"

Or:

OrderScreen.OddColor = "0,255,0"

Or:

$GREEN = "GREEN"
OrderScreen.OddColor = $GREEN
 

Comment on this topic

Topic ID: 510076