Back to Devexpress

LocationInformation.Address Property

wpf-devexpress-dot-xpf-dot-map-dot-locationinformation.md

latest2.7 KB
Original Source

LocationInformation.Address Property

Gets or sets the address associated with the current location.

Namespace : DevExpress.Xpf.Map

Assembly : DevExpress.Xpf.Map.v25.2.dll

NuGet Package : DevExpress.Wpf.Map

Declaration

csharp
public AddressBase Address { get; set; }
vb
Public Property Address As AddressBase

Property Value

TypeDescription
AddressBase

An AddressBase class descendant object.

|

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Address property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-map-process-search-with-a-custom-search-panel/CS/MapControl_SearchPanel/MainWindow.xaml.cs#L65

csharp
sb.Append(String.Format("{0}\n", info.DisplayName));
sb.Append(String.Format("\tAdress: {0}\n", info.Address));
sb.Append(String.Format("\tLocation: {0}\n", info.Location));

wpf-map-process-search-with-a-custom-search-panel/VB/MapControl_SearchPanel/MainWindow.xaml.vb#L63

vb
sb.Append(String.Format("{0}" & Microsoft.VisualBasic.Constants.vbLf, info.DisplayName))
sb.Append(String.Format(Microsoft.VisualBasic.Constants.vbTab & "Adress: {0}" & Microsoft.VisualBasic.Constants.vbLf, info.Address))
sb.Append(String.Format(Microsoft.VisualBasic.Constants.vbTab & "Location: {0}" & Microsoft.VisualBasic.Constants.vbLf, info.Location))

See Also

LocationInformation Class

LocationInformation Members

DevExpress.Xpf.Map Namespace