hmCal_GET SELECTED APPOINTMENTS

hmCal_GET SELECTED APPOINTMENTS(area;appointments)

Parameter          Type             Description
area              Longint       -> hmCal area
appointments      Longint-Array <- array with appointments-ids

Description

The command hmCal_GET SELECTED APPOINTMENTS fills the longint-array appointments with all selected appointments of the calender.

To select appointments use the command hmCal_SELECT APPOINTMENTS.

Example

The following example returns all selected appointments:

C_LONGINT($vl_countApp)

ARRAY LONGINT($tl_appIDs;0)

hmCal_GET SELECTED APPOINTMENTS(hmCal;$tl_appIDs)

$vl_countApp:=Size of Array($tl_appIDs)