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/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Deselects an appointment from an Organizer control.
Example
// Add an appointment into an Organizer control
nAppointmentIndex is int
nAppointmentIndex = OrganizerAddAppointment(ORG_MyOrganizer, ...
"Meeting with sales team", ...
DateSys() + "1400", DateSys() + "1600")
// Select the added appointment
OrganizerSelectPlus(ORG_MyOrganizer, nAppointmentIndex)
...
// Click the "Deselect" Button control
OrganizerSelectMinus(ORG_MyOrganizer)
Syntax

Deselecting an appointment identified by its index Hide the details

OrganizerSelectMinus(<Organizer control> [, <Appointment index>])
<Organizer control>: Control name
Name of the Organizer control to be used. This control can correspond to:
    <Appointment index>: Optional integer
    Index of the appointment to deselect. Appointment indices start from 1.
    If this parameter is not specified, the appointment that is currently selected is deselected.
    If this parameter is specified and does not match the index of the appointment currently selected in the Organizer control, the function has no effect.
    Business / UI classification: UI Code
    Component: wd290obj.dll
    Minimum version required
    • Version 15
    This page is also available for…
    Comments
    Click [Add] to post a comment

    Last update: 05/26/2022

    Send a report | Local help