|
|
|
|
|
- Properties specific to gglAuthor variables
gglAuthor (Variable type) In french: gglAuteur
The gglAuthor type is used to identify the author of a Google element. This information is read-only: it is entered by Google at creation (based on login details) and cannot be modified. This type of variable is used by: Remarks: - In most cases, the declaration of a gglAuthor variable is not required. The properties of the gglCalendar or gglEvent type allow you to directly handle the properties of the gglAuthor type (especially the Author property).
- 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
...
tabAgendas is array of gglCalendar
tabAgendas = GglListCalendar(Cnx)
GglFillCalendar(Cnx, tabAgendas[1])
Trace("Auteur de l'agenda : " + tabAgendas[1].Author.Name)
AuteurAgenda is gglAuthor
AuteurAgenda = tabAgendas[1].Author
Trace("Auteur de l'agenda : " + AuteurAgenda.Name)
Properties Properties specific to gglAuthor variables The following properties can be used to define the characteristics of gglAuthor variables: | | | Property name | Type used | Effect |
---|
Email | Character string | Email of the author. This property corresponds to the email of the user who created the element (name used in the connection information). This property is read-only. | Name | Character string | Name of the author. This property corresponds to the name of the user who created the element (name used in the connection information). This property is read-only. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|