|
|
|
|
- Properties specific to gglCalendar variables
- Functions that use gglCalendar variables
- Functions (prefix syntax) that use gglCalendar variables
gglCalendar (Type of variable) In french: gglAgenda
The gglCalendar type is used to describe and modify a calendar used by the Google Calendar service. The characteristics of this type of variable can be defined and changed using different WLanguage properties. Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
// Connection to Google Cnt is gglConnection .. // Retrieve the array of available calendars arrCalendars is array of gglCalendar arrCalendars = GglListCalendar(Cnt) // Retrieve the events of the first calendar GglFillCalendar(Cnt, arrCalendars[1]) Trace("Calendar description: " + arrCalendars[1].Description)
Remarks Properties specific to gglCalendar variables The following properties can be used to handle a gglCalendar variable: | | | Property name | Type used | Effect |
---|
Description | Character string | Description of the calendar. | Event[n] | Array of gglEvent | Events of the calendar. An event having several characteristics, we advise you to declare a gglEvent variable. | Identifier | Character string | Identifier of the calendar. This property is read-only. | TimeZone | Character string | Time zone used by the calendar. This property returns a string such as "America/Los Angeles". This property is read-only. | Title | Character string | Title of the calendar. |
Functions that use gglCalendar variables | | GglDelete | Deletes data from the Google server. | GglFillCalendar | Fills a calendar that was retrieved beforehand: the events corresponding to the calendar are retrieved (some criteria may be specified). | GglFillCalendarByRequest | Fills a calendar that was retrieved beforehand: the events corresponding to the calendar are retrieved from a custom request. | GglGetCalendar | Retrieves a Google calendar and its events according to its title or identifier. | GglListCalendar | Retrieves the list of Google calendars associated with the specified Google account. | GglWrite | Creates and/or updates data on the Google server (addition or modification of data). |
Functions (prefix syntax) that use gglCalendar variables
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|