Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The currently selected appointments.

Usage

Code Block
SetSelectedAppts = Get_Property(CtrlEntID, "OLE.SelAppts", Value)

Values

@FM Semi-colon delimited list of appointment keys. Default: ""

Remarks

The SelAppts property is the list of currently selected appointments. Setting this property programmatically selects appointments. At any time, you can read this property to determine what is selected. If nothing is selected, this property is "".

This property is Read Only. Use SelectAppt to select an appointment.

Example

Code Block
// Get the selected appointments
SelectedAppts = Get_Property(@Window:".OLE_CALENDAR", "OLE.SelAppts")
 
// Select the appointment with the key "001"
Set_Property(@Window:".OLE_CALENDAR", "OLE.SelAppts", "001")