|
|
|
|
|
- Properties specific to gglInstantMessaging variables
gglInstantMessaging (Variable type) In french: gglMessagerieInstantanée
The gglInstantMessaging type is used to describe and modify the characteristics of an instant messaging program used by 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)
MonContact is gglContact = tabContacts[1]
Mess is gglInstantMessaging dynamic
FOR EACH Mess OF MonContact.InstantMessaging
Trace(Mess.Caption + " : " + Mess.Address)
END
Properties Properties specific to gglInstantMessaging variables The following properties can be used to handle gglInstantMessaging variables: | | | Property name | Type used | Effect |
---|
Address | Character string | Address of contact on the instant messaging. | Caption | Character string | Caption for describing the address. | Messaging | Integer constant | Type of instant messaging. Can correspond to one of the following constants:- gglAIM messaging: AIM messaging
- gglGoogleTalk messaging: Google Messaging
- gglICQ messaging: ICQ messaging
- gglJabber messaging: Jabber messaging
- gglMSN messaging: MSN messaging
- gglQQ messaging: QQ messaging
- gglSkype messaging: Skype messaging
- gglYahoo messaging: Yahoo messaging
| 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: Neither home nor work address.
- gglBureau: Business address.
- gglHome: Home address.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|