|
|
|
|
|
<gglConnection variable>.FillCalendarByRequest (Function) In french: <Variable gglConnexion>.RemplitAgendaParRequête Fills a calendar that was previously retrieved: the events corresponding to the calendar are retrieved via a custom query. This function must be used after the call to <gglConnection variable>.ListCalendar.
Cnx is gglConnection
...
IF Cnx.Connect() = False THEN
Error(ErrorInfo())
RETURN
END
tabAgendas is array of 0 gglCalendar
tabAgendas = Cnx.ListCalendar()
Agenda = tabAgendas[1]
Cnx.FillCalendarByRequest(Agenda, "futureevents&orderby=starttime")
Syntax
<Result> = <Google connection>.FillCalendarByRequest(<Calendar> , <Parameters>)
<Result>: Boolean - True if the events have been retrieved,
- False otherwise. To get more details on the error, use ErrorInfo.
<Google connection>: gglConnection variable Name of the gglConnection variable to be used. This connection was validated by <gglConnection variable>.Connect. <Calendar>: gglCalendar variable Name of the gglCalendar variable to fill. <Parameters>: Character string Parameters that must be passed to the HTTP request. The parameters are separated by the & character. For more details, see the documentation about the Google Calendar service.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|