System.Contact.street 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 street address associated with the contact.

This property is read-only.

Syntax

strstreet = System.Contact.street

Property value

A String that receives the street address.

Remarks

All street address fields in the .contact file that Windows creates for each individual Windows Contacts entry are appended to form the street.

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).street;
    // 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