AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones Google / Google Contacts
  • Properties specific to the description of gglEmail variables
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
gglEmail (Type of variable)
In french: gglEmail
The gglEmail type is used to describe and modify the email address of a contact.
This type of variable is used by the gglContact type.
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
// Connection to Google
Cnt is gglConnection
Cnt.Email = "balthazar@gmail.com"
Cnt.Password = "qwerty"
Cnt.ApplicationName = "MyApp-01"
IF GglConnect(Cnt) = False THEN
Error(ErrorInfo())
END
...
// Retrieve the array of contacts
arrContacts is array of gglContact
arrContacts = GglListContact(Cnt)
 
// Display the emails of the first contact
AContact is gglContact = arrContacts[1]
AnEmail is dynamic gglEmail
FOR EACH AnEmail OF AContact.Email
Trace(AnEmail.Caption + ": " + AnEmail.Address)
END
Remarks

Properties specific to the description of gglEmail variables

The following properties can be used to handle a gglEmail variable:
Property nameType usedEffect
AddressUnicode stringEmail address of contact.
CaptionUnicode stringCaption for describing the address.

Equivalent of a custom type. A value must be assigned to only one of the two properties: Caption or Type.
PrimaryBoolean
  • True if the email corresponds to the main email address of the contact,
  • False otherwise.
TypeInteger constantType of the email address corresponding to one of the following variables:
  • gglOther: Other type of address.
  • gglWork: Business address.
  • gglHome: Home address.
A value must be assigned to only one of the two properties: Caption or Type.
Versión mínima requerida
  • Versión 14
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local