You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

The list of all Calendars.

Usage

Set_Property(OLECtrlEntID, "OLE.CalendarList", Calendars)

Values

@FM delimited list of Calendars

Default: ""

Remarks

The CalendarList property defines all calendars in this control. While this is just one Calendar control, it can display multiple calendars just like Outlook. Each calendar is @FM delimited and contains only two values:

PositionNameTypeDescription
<x, 1>KeyTextThe unique key identifying this calendar.
<x, 2>NameTextThe calendar's name.

NOTE: You must define calendars before adding appointments.

Example

// Each employee gets their own calendar
Calendars = ""
Calendars<-1> = "EMP100":@VM:"John Doe"
Calendars<-1> = "EMP101":@VM:"Jane Doe"
Set_Property(@Window:".OLE_CALENDAR", "OLE.CalendarList", Calendars)
  • No labels