AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Agenda
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 = ORG_MyOrganizer.AddAppointment(...
"Meeting with sales team", ...
DateSys() + "1400", DateSys() + "1600")
// Select the added appointment
ORG_MyOrganizer.SelectPlus(nAppointmentIndex)
...
// Click the "Deselect" Button control
ORG_MyOrganizer.SelectMinus()
Syntax

Deselecting an appointment identified by its index Hide the details

<Organizer control>.SelectMinus([<Appointment index>])
<Organizer control>: Control name
Name of the Organizer control to be used. This control can correspond to:
  • WINDEVAndroidiPhone/iPadMac Catalyst an Organizer control in a window.
  • WEBDEV - Server codePHP an Organizer control in a page.
<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.
WINDEViPhone/iPad

Deselecting an appointment identified by an Appointment variable Hide the details

<Organizer control>.SelectMinus([<Appointment to deselect>])
<Organizer control>: Control name
Name of the Organizer control to use (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.
Component: wd290obj.dll
Versión mínima requerida
  • Versión 23
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 19/06/2023

Señalar un error o enviar una sugerencia | Ayuda local