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)
  • Special cases
  • Required permissions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Lists the calendars available on the mobile device (Android/iOS).
// Remplit un champ Liste avec les calendriers disponibles sur l'appareil
tabCalendrier is array of Calendar 
tabCalendrier = AppointmentListCalendar()
FOR EACH Calendrier OF tabCalendrier
	ListAdd(LISTE_Liste1, Calendrier.Nom)
END
Syntax

Listing the available calendars Hide the details

<Result> = AppointmentListCalendar()
<Result>: Array of Calendar variables
Array of Calendar variables initialized with the list of available calendars.
If an error occurred, the array is empty and the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo.

Listing the calendars that correspond to the specified filters Hide the details

<Result> = AppointmentListCalendar(<Filter> , <Search value>)
<Result>: Array of Calendar variables
Array of Calendar variables initialized with the list of available calendars.
If an error occurred, the array is empty and the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo.
<Filter>: Integer constant
Property on which the list of calendars must be filtered:
aptAccountNameFilters on the name of the account to which the calendar belongs. A "Contains" search is performed.
aptAccountTypeFilters on the type of the account to which the calendar belongs. A "Contains" search is performed.
aptIdentifierFilters on the identifiers of calendars. An exact-match search is performed.
aptNameFilters on the name of the calendar. A "Contains" search is performed.
<Search value>: Character string
Value sought in the filtered properties of calendar. This search is not case sensitive.
Remarks

Special cases

  • Android AppointmentListCalendar can be used in the emulator but not in the simulator.
  • To list the appointments found in a calendar, use AppointmentList.
Android

Required permissions

This function changes the permissions required by the application.
Permission required: READ_CALENDAR
This permission allows the application to read the calendar data of the user.
Component: wd300android.aar
Minimum version required
  • Version 18
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help