|
|
|
|
|
OrganizerListAppointment (Function) In french: AgendaListeRendezVous Returns: - the list of appointments found between two dates in an Organizer control,
- all appointments found in an Organizer control,
- a specific appointment (selected or hovered).
tabRdv is array of Appointment
tabRdv = OrganizerListAppointment(AGD_MonAgenda)
FOR EACH gMonRendezVous OF tabRdv
TableAddLine(TABLE_Table1, gMonRendezVous.DateDébut, ...
gMonRendezVous.DateFin, gMonRendezVous.Titre)
END
tabRdv is array of Appointment
tabRdv = OrganizerListAppointment(AGD_MonAgenda, DateSys())
Syntax
Retrieving the list of appointments found between two dates Hide the details
<Result> = OrganizerListAppointment(<Organizer control> [, <Start date> [, <End date>]])
<Result>: Array of Appointment variables Array containing the Appointment variables. If an appointment corresponding to the specified criteria exists, this array will contain a single element. If no appointment corresponds to the specified criteria, this array will contain zero appointments. <Organizer control>: Control name Name of the Organizer control to be used. This field may correspond to:    an Organizer control in a window.  an Organizer control in a page.
<Start date>: Optional DateTime variable Start date for selecting the appointments.
If this parameter is not specified, all the appointments found in the Organizer control will be returned. <End date>: Optional DateTime variable End date for selecting the appointments.
If this parameter is not specified, all appointments found from <Start date> will be returned.
Retrieving the information about a specific appointment Hide the details
<Result> = OrganizerListAppointment(<Organizer control> , <Type of appointment>)
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|