The color used to draw a band at the current time.

Version Introduced: 3.0.0

Usage

Set_Property(OLECtrlEntID, "OLE.CurrentTimeColor", Color)

Values

Color can be any Color value.

Default: Auto

Remarks

The CurrentTimeColor property sets the color used to render the current time. By default, this value is based on the system color settings. However, you can set this to any Color you wish. To hide the current time, simply set this to "None".

Note that you only set a single color, but the control uses that color to render the current time in a fading gradient.

Example

// Make the current time red 
Set_Property(@Window:".OLE_SCHEDULE", "OLE.CurrentTimeColor", "Red") 

// Hide the current time 
Set_Property(@Window:".OLE_SCHEDULE", "OLE.CurrentTimeColor", "None")
  • No labels