|
|
|
|
|
OrganizerSelectPlus (Function) In french: AgendaSelectPlus Selects an appointment in an Organizer control. // Selects the first appointment found in the Organizer control OrganizerSelectPlus(ORG_MyOrganizer, 1) Â // Retrieves the description of this appointment arrAppointment is array of Appointment arrAppointment = OrganizerListAppointment(ORG_MyOrganizer, orgAptSelected)
// Adds an appointment in the Organizer control and then selects that appointment AdditionIndex is int gMyAppointment is Appointment  AdditionIndex = OrganizerAddAppointment(ORG_MyOrganizer, gMyAppointment) OrganizerSelectPlus(ORG_MyOrganizer, AdditionIndex)
Syntax
Selecting an appointment identified by its index Hide the details
OrganizerSelectPlus(<Organizer control> , <Appointment index>)
<Organizer control>: Control name Name of the Organizer control to be used. This control can correspond to: - an Organizer control in a window.
<Appointment index>: Integer Index of the appointment to be selected. Appointment indices start from 1. Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|