AddressBook
From Xojo Documentation
This item was deprecated in version 2019r2. |
Supported Platforms Project Types: Desktop Platforms: macOS |
Provides the ability to read from and write to the macOS Address Book.
Properties | ||
|
Methods | ||||||
|
Sample Code
You can create an instance of this class in either of two ways. Use the New operator in the usual way or call the AddressBook property of the System module.
You can obtain the contacts using the Contacts method. This code populates an the array of contacts from the user's Address Book.
book = System.AddressBook
Var contacts() As AddressBookContact
contacts = book.Contacts
Once you have the array of contacts, you can get its size with the Ubound function and use the properties of the AddressBookContact class to extract any field. The AddressBookData class is able to convert to a String automatically in most cases. If the field does not contain multiple values, it will return the string.
For example, you can loop through the array of AddressBookContacts and get the company names. This code puts the company names in a ListBox.
book = System.AddressBook
For Each Contact As AddressBookContact In book.Contacts
Listbox1.AddRow(Contact.CompanyName)
Next
You can get the current user's "me" entry from this and extract a field:
Here is another way to get a property. It uses the Value method of the AddressBookData method.
See Also
AddressBookAddress, AddressBookContact, AddressBookData, AddressBookGroup, AddressBookRecord classes.