ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Scheduler functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
SchedulerSelectMinus (Function)
In french: PlanningSelectMoins
Deselects an appointment from a Scheduler control.
Example
// Add an appointment into a Scheduler control
nAppointmentIndex is int
nAppointmentIndex = SchedulerAddAppointment(SCH_Schedule, "Vince", ...
"Meeting with sales team", ...
DateSys() + "1400", DateSys() + "1600")
// Select the added appointment
SchedulerSelectPlus(SCH_Schedule, nAppointmentIndex)
...
// Click the "Deselect" button
SchedulerSelectMinus(SCH_Schedule)
Syntax

Deselecting an appointment identified by its index Hide the details

SchedulerSelectMinus(<Scheduler control> [, <Appointment index>])
<Scheduler control>: Control name
Name of the Scheduler control to be used.
<Appointment index>: Optional integer
Index of the appointment to deselect. Appointment indices start at 1.
If this parameter is not specified, the appointment that is currently selected is deselected.
If this parameter is specified and does not correspond to the index of the appointment currently selected in the schedule, the function has no effect.
WINDEVWEBDEV - Server codeiPhone/iPad

Deselecting an appointment identified by an Appointment variable Hide the details

SchedulerSelectMinus(<Scheduler control> , <Appointment used>)
<Scheduler control>: Control name
Name of the Scheduler control to be used.
<Appointment used>: Appointment variable
Appointment variable corresponding to the appointment to deselect.
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 16
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/11/2023

Send a report | Local help