|
|
|
|
|
- Properties specific to gglContactGroup variables
- Functions that use gglContactGroup variables
gglContactGroup (Variable type)
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.
Cnt is gglConnection
Cnt.Email = "balthazar@gmail.com"
Cnt.Password = "qwerty"
Cnt.ApplicationName = "MyApp-01"
IF GglConnect(Cnt) = False THEN
Error(ErrorInfo())
END
...
arrGroups is array of gglContactGroup
arrGroups = GglListContactGroup(Cnt)
Grp is dynamic gglContactGroup
FOR EACH Grp OF arrGroups
Trace(Grp.Name)
END
Cnt is gglConnection
Cnt.Email = "MyAddress@gmail.com"
Cnt.Password = "GmailAddressPassword"
Cnt.ApplicationName = ""
grpGoogle is gglContactGroup
IF GglConnect(Cnt) = False THEN
Error(ErrorInfo())
ELSE
grpGoogle.Name = "My New Group"
IF NOT GglWrite(Cnt, grpGoogle) THEN
Error(ErrorInfo())
END
END
Propiedades Properties specific to gglContactGroup variables The following properties can be used to define the characteristics of 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. |
Observaciones Functions that use gglContactGroup variables | | GglDelete | Elimina los datos del servidor de Google. | GglListContactGroup | Recupera la lista de grupos de contactos asociados a la cuenta de Google especificada. | GglWrite | Crea y/o actualiza datos en el servidor de Google (adición o modificación de datos). |
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|