System.Contact.workPhone property

[ The Windows Gadget Platform/Sidebar is available for use in the operating systems specified in the Requirements section. It may be altered or unavailable in subsequent versions. ]

Gets the work phone number associated with the contact.

This property is read-only.

Syntax

strworkPhone = System.Contact.workPhone

Property value

A String that receives the work phone number.

Remarks

Individual contacts are accessible through the Contacts collection of System.ContactManager.

Examples

The following example demonstrates how to access a contact in the Contacts collection and get a specific property for that contact.

// Instantiate a Contacts object to search.
oContact = System.ContactManager.Contacts;

// Iterate through all contacts.
for (var i = 0; i < oContact.count; i++)
{
    var sSearchResult = oContact.item(i).workPhone;
    // Add search result to main display string.
    sOutput += sSearchResult;
}

Requirements

Minimum supported client
Windows Vista [desktop apps only]
Minimum supported server
Windows Server 2008 [desktop apps only]
End of client support
Windows 7
End of server support
Windows Server 2008
IDL
Sidebar.idl
DLL
Sidebar.Exe (version 1.00 or later)

See also

Reference

System.Contact

System.ContactManager