|
|
|
|
|
- Properties specific to gglPostalAddress variables
gglPostalAddress (Variable type) In french: gglAdressePostale
The gglPostalAddress type is used to describe and modify the postal 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]
UneAdresse is gglPostalAddress dynamic
FOR EACH UneAdresse OF UnContact.Address
Trace(UneAdresse.Caption + " : " + UneAdresse.Value)
END
Properties Properties specific to gglPostalAddress variables The following properties can be used to handle gglPostalAddress variables: | | | Name | Type used | Effect |
---|
Address | Character string | Postal address of the contact. | Caption | Character string | Caption for describing the address. | Primary | Boolean | - True if the address corresponds to the main address of the contact,
- False otherwise.
| Type | Integer constant | Type of the address corresponding to one of the following variables:- gglOther: Other address type.
- gglBureau: Business address.
- gglHome: Home address.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|