Represents an object used to create applications that can add and/or retrieve calendars and calendar appointments, as well as define attendees and reminders in the user's device.
Use the launchbox.CalendarManager
reference to obtain an instance of this
object.
The table below lists all constant values of the CalendarManager
object, used at the definition stage of the Attendee class to denote its
invitation status.
Name | Description | Value |
---|---|---|
window.launchbox.CalendarManager.AttendeeStatus.UNKNOWN | Denotes that the status of the attendee's invitation is unknown. | 0 |
window.launchbox.CalendarManager.AttendeeStatus.INVITED | Denotes that the attendee has been invited. | 1 |
window.launchbox.CalendarManager.AttendeeStatus.ACCEPTED | Denotes that the attendee has accepted the invitation. | 2 |
window.launchbox.CalendarManager.AttendeeStatus.DECLINED | Denotes that the attendee has declined the invitation. | 3 |
window.launchbox.CalendarManager.AttendeeStatus.TENTATIVE | Denotes that the status of the attendee's invitation is tentative. | 4 |
The table below lists all constant values of the CalendarManager
object, used at the definition stage of the Attendee class to denote its
presence status.
Name | Description | Value |
---|---|---|
window.launchbox.CalendarManager.AttendeeType.UNKNOWN | Denotes that the status of the attendee's presence is unknown. | 0 |
window.launchbox.CalendarManager.AttendeeType.REQUIRED | Denotes that the attendee's presence is required. | 1 |
window.launchbox.CalendarManager.AttendeeType.OPTIONAL | Denotes that the attendee's presence is not required. | 2 |
Name | Return type | Description |
---|---|---|
getCalendars | promise |
Provides access to a list of calendars present on the device. |
removeCalendar | promise |
Removes a selected calendar from the device. |