|
- Special cases
- Application in the background: Specific case from Android 10
- Required application feature
ContactSelect (Function) In french: ContactSélectionne
// Sélectionne un contact et déclenche l'appel de ce contact // (utilisation de la structure contact) IF ContactSelect() = True THEN tapiDialerCall(mContact.MobilePhone) END
gContactEnCours is Contact // Sélectionne un contact et compose les numéros de téléphone de ce contact // (utilisation de la variable contact) IF ContactSelect(gContactEnCours) = True THEN tel is Phone FOR EACH tel OF gContactEnCours.PhoneNumber IF tel.Type = phoneCellWork OR tel.Type = phoneWork THEN tapiDialerCall(tel.Number) RETURN END END END
Syntax Versions 17 and later
Selecting a contact and filling the Contact variable (from Android 2.0, iPhone or iPad, Universal Windows) Hide the details
<Result> = ContactSelect(<Contact>)
<Result>: Boolean - True if a contact was selected,
- False otherwise. For more details on the error, use function ErrorInfo.
<Contact>: Contact variable Name of the Variable of type Contact to be filled with the characteristics of the selected Contact. New in version 17
Selecting a contact and filling the Contact variable (from Android 2.0, iPhone or iPad, Universal Windows) Hide the details
<Result> = ContactSelect(<Contact>)
<Result>: Boolean - True if a contact was selected,
- False otherwise. For more details on the error, use function ErrorInfo.
<Contact>: Contact variable Name of the Variable of type Contact to be filled with the characteristics of the selected Contact.
Selecting a contact and filling the Contact variable (from Android 2.0, iPhone or iPad, Universal Windows) Hide the details
<Result> = ContactSelect(<Contact>)
<Result>: Boolean - True if a contact was selected,
- False otherwise. For more details on the error, use function ErrorInfo.
<Contact>: Contact variable Name of the Variable of type Contact to be filled with the characteristics of the selected Contact.
Warning
From version 17 (69), this syntax is kept for backward compatibility.
Selecting a contact and filling the Contact variable (before Android 2.0, iPhone or iPad, Universal Windows) Hide the details
<Result> = ContactSelect()
<Result>: Boolean - True if a contact was selected,
- False otherwise. For more details on the error, use function ErrorInfo.
Business / UI classification: Business Logic Component: wd270android.aar
This page is also available for…
|
|
|
| |
| Not working to select in Apple IOS 8.4 - 10.3.1? |
|
| This function is not working to select in IOS. The contact list comes up but you cannot select a contact. |
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |