|
|
|
|
|
SchedulerSelectPlus (Function) In french: PlanningSelectPlus Selects an appointment in a Scheduler control. // Selects the first appointment found in the Scheduler control SchedulerSelectPlus(SCH_Schedule, 1)
// Retrieves the description of this appointment arrAppointment is array of Appointment arrAppointment = SchedulerListAppointment(SCH_Schedule, schAptSelected)
MyAppointment is Appointment
AdditionIndex is int
AdditionIndex = SchedulerAddAppointment(SCH_Schedule, MyAppointment)
SchedulerSelectPlus(SCH_Schedule, AdditionIndex)
Syntax
Selecting an appointment identified by its index Hide the details
SchedulerSelectPlus(<Scheduler control> , <Appointment index>)
<Scheduler control>: Control name Name of the Scheduler control to be used. <Appointment index>: Integer Index of the appointment to be selected. Appointment indexes start from 1. Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|