|
- Special cases
- Application in the background: Android 10 specific case
- Required application feature
ContactSelect (Function) In french: ContactSélectionne
// Selects a contact and calls this contact // (using the contact structure) IF ContactSelect() = True THEN tapiDialerCall(mContact.MobilePhone) END
gCurrentContact is Contact // Selects a contact and dials the phone numbers of this contact // (using the contact variable) IF ContactSelect(gCurrentContact) = True THEN tel is Phone FOR EACH tel OF gCurrentContact..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. To get the details of the error, use ErrorInfo.
<Contact>: Contact variable Name of Contact variable that will 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. To get the details of the error, use ErrorInfo.
<Contact>: Contact variable Name of Contact variable that will 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. To get the details of the error, use ErrorInfo.
<Contact>: Contact variable Name of Contact variable that will 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 about the error, use the ErrorInfo function.
Business / UI classification : Business Logic Component : wd260android.jar
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. |
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |