|
|
|
|
|
<gglConnection variable>.Delete (Function) In french: <Variable gglConnexion>.Supprime Deletes data from the Google server. The created or updated data is contained in a variable that corresponds to the service used:
Cnt is gglConnection
...
IF Cnt.Connect() = False THEN
Error(ErrorInfo())
END
arrCalendar is array of 0 gglCalendar
arrCalendar = Cnt.ListCalendar(gglUser)
Calendar is gglCalendar
FOR EACH Calendar OF arrCalendar
IF Calendar.Title = "Work" THEN
Cnt.Delete(Calendar)
END
END
Syntax
<Result> = <Google connection>.Delete(<Google element>)
<Result>: Boolean - True if deleted successfully,
- False if an error occurs. 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. <Google element>: Variable that corresponds to the type to delete Element to delete. This parameter can correspond to:- Name of the gglCalendar variable that corresponds to the calendar to be deleted.
- Name of the gglContact variable that corresponds to the contact to be deleted.
- Name of the gglContactGroup variable that corresponds to the contact group to be deleted.
Remarks Deleting calendars To delete a calendar, this calendar must have been retrieved by <gglConnection variable>.ListCalendar associated with the gglUser constant. Otherwise, an "InternalServerError" is returned by the server.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|