|
|
|
|
|
- Properties specific to gglContactGroup variables
- Functions that use gglContactGroup variables
gglContactGroup (Variable type) In french: gglGroupeContact
The gglContactGroup is used to describe and modify a group of contacts used by the Google Contacts service. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Cnx is gglConnection
Cnx.Email = "balthazar@gmail.com"
Cnx.Password = "azerty"
Cnx.ApplicationName = "MonAppli-01"
IF GglConnect(Cnx) = False THEN
Error(ErrorInfo())
END
...
tabGroupes is array of gglContactGroup
tabGroupes = GglListContactGroup(Cnx)
Grp is gglContactGroup dynamic
FOR EACH Grp OF tabGroupes
Trace(Grp.Name)
END
Cnx is gglConnection
Cnx.Email = "MonAdresse@gmail.com"
Cnx.Password = "MotdePasseAdresseGmail"
Cnx.ApplicationName = ""
grpGoogle is gglContactGroup
IF GglConnect(Cnx) = False THEN
Error(ErrorInfo())
ELSE
grpGoogle.Name = "Mon Nouveau Groupe"
IF NOT GglWrite(Cnx, grpGoogle) THEN
Error(ErrorInfo())
END
END
Properties Properties specific to gglContactGroup variables The following properties can be used to handle gglContactGroup variables: | | | Name | Type used | Effect |
---|
UpdateDate | DateTime | Date of the last update. This information is read-only. Note: The date is UTC (Universal Time Coordinated). | Identifier | Character string | Group identifier. This information is read-only. | Name | Character string | Name of the group. |
Remarks Functions that use gglContactGroup variables | | GglDelete | Deletes data from the Google server. | GglListContactGroup | Retrieves the list of groups of contacts associated with the specified Google account. | GglWrite | Creates and/or updates data on the Google server (addition or modification of data). |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|