Click or drag to resize

BalloonPushPinAddress Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets the Address this push pin is located at.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public Address Address { get; }

Property Value

Type: Address
Examples
C#
BalloonPushPin myPin = new BalloonPushPin(new LatLon(33.584224, -117.737976));
Address pinAddress = myPin.Address;
Console.WriteLine("This pin is located at {0}", pinAddress.ToString());
// This pin is located at Woodcrest Ln, Aliso Viejo, Orange, California, 92656, USA
See Also