|
|
|
|
|
- Properties specific to gglEmail variables
gglEmail (Variable type) 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. 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
...
tabContacts is array of gglContact
tabContacts = GglListContact(Cnx)
UnContact is gglContact = tabContacts[1]
UnEmail is gglEmail dynamic
FOR EACH UnEmail OF UnContact.Email
Trace(UnEmail.Caption + " : " + UnEmail.Address)
END
Properties Properties specific to gglEmail variables The following properties can be used to handle gglEmail variables: | | | Property name | Type used | Effect |
---|
Address | Unicode string | Email address of contact. | Caption | Unicode string | Caption for describing the address.
Equivalent of a custom type. A value must be assigned to only one of the two properties: Caption or Type. | Primary | Boolean | - True if the email corresponds to the main email address of the contact,
- False otherwise.
| Type | Integer constant | Type of the email address corresponding to one of the following variables:- gglOther: Other address type.
- gglBureau: Business address.
- gglHome: Home address.
A value must be assigned to only one of the two properties: Caption or Type. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|