ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Organizer functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadApple WatchUniversal Windows 10 AppWindows Mobile
Others
Stored procedures
Deselects an appointment from an Organizer control.
Example
// Add an appointment into an Organizer control
nAppointmentRank is int
nAppointmentRank = OrganizerAddAppointment(ORG_MyOrganizer, ...
"Meeting with sales team", ...
DateSys() + "1400", DateSys() + "1600")
// Select the added appointment
OrganizerSelectPlus(ORG_MyOrganizer, nAppointmentRank)
...
// Click "Deselect" Button control
OrganizerSelectMinus(ORG_MyOrganizer)
Syntax

Deselecting an appointment identified by its subscript Hide the details

OrganizerSelectMinus(<Organizer control> [, <Appointment subscript>])
<Organizer control>: Control name
Name of Organizer control to use. This control can correspond to:
  • WINDEV an Organizer control in a window.
<Appointment subscript>: Optional integer
Subscript of appointment to deselect. The subscripts of appointments start from 1.
If this parameter is not specified, the appointment that is currently selected is deselected.
The function has no effect if this parameter is specified and does not correspond to the subscript of the appointment currently selected in the Organizer control.
WINDEV

Deselecting an appointment identified by an Appointment variable Hide the details

OrganizerSelectMinus(<Organizer control> [, <Appointment to deselect>])
<Organizer control>: Control name
Name of Organizer control to use. This control can correspond to:
  • WINDEV an Organizer control in a window.
<Appointment to deselect>: Optional Appointment variable
Name of the Appointment that corresponds to the appointment to deselect.
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 appointment currently selected in the Organizer control, the function has no effect.
Business / UI classification: UI Code
Component: wd260obj.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/08/2021

Send a report | Local help