void SetContact(int objectID)
Définit le contact à afficher dans la fiche détaillée. Cette méthode doit être appelée immédiatement après que la déclaration de l'écran comme le montre l'exemple suivant.
Exemple
//recherche d'un contact
Contact contact;
Contacts.FindNearest(“info@pointui.com”, “Email”, contact);
//récupération de l'identifiant unique du contact
int oid;
contact.GetValue("ObjectID", oid);
//affichage de la fiche détaillée du contact
ContactCardScreen ficheContact;
ficheContact.SetContact(oid);
FlowStack.Branch(ficheContact);