The
gglLocation type is used to describe and modify the location of an event found in a Google calendar.
This type of variable is used by the
gglEvent variables.
Remarks: 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 = GglGetCalendar(Cnt)
// Retrieve the events of the first calendar
GglFillCalendar(Cnt, arrCalendars[1])
// Display the locations of the first event
MyCalendar is gglCalendar = arrCalendars[1]
Location is gglLocation
FOR EACH Location OF MyCalendar
Trace(Location.Value)
END
Remarks
Properties specific to the description of gglLocation variables
The following properties can be used to handle a gglLocation variable:
| | |
Property name | Type used | Effect |
---|
Value | Character string | Name and description of the location. |