ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Appointment functions (Lotus Notes/Android/iOS)
  • Properties specific to Reminder variables
  • Note
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The Reminder type is used to describe and handle a reminder to inform the user of an appointment.
This type of variable is used by Appointment variables.
The reminder characteristics can be defined and changed using different WLanguage properties.
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
// Ajoute un nouveau rappel par notification une heure avant le début du rendez-vous
rappelRDV is Reminder
rappelRDV.Type = reminderNotification
rappelRDV.Delay = 60
Add(rdv.Rappel, rappelRDV)
AppointmentModify(rdv)

// Ajoute un nouveau rappel par email une semaine avant le début du rendez-vous
rappelRDV is Reminder
rappelRDV.Type = reminderEmail
rappelRDV.Delay = 7 * 24 * 60 
Add(rdv.Rappel, rappelRDV)
AppointmentModify(rdv)
Properties

Properties specific to Reminder variables

The following properties can be used to handle a reminder:
Property nameType usedEffect
DelayInteger or DurationTimeout in minutes before the beginning of the appointment for which the reminder must be performed. This property can correspond to:
  • an integer corresponding to the number of minutes,
  • a Duration variable,
  • the duration in a readable format (e.g., 1 min).
TypeInteger constantMethod that will be used to perform the reminder:
  • callbackDefault default method. This method depends on the setting of the device.
  • reminderEmail send an email. This type of reminder is available only if the account associated with the appointment calendar supports this type of reminder and if this account is configured.
  • reminderNotification Send a Notification.
  • reminderSMS Send an SMS. This type of reminder is available only if the account associated with the appointment calendar supports this type of reminder and if this account is configured.
iPhone/iPad Only the reminderDefault constant is available.
Remarks

Note

You can use VariableReset to reset the content of the Reminder variable.
Minimum version required
  • Version 18
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help