BalloonLocation Enumeration | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Represents the location at which the balloon of a
BalloonPushPin should be rendered.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public enum BalloonLocation
Public Enumeration BalloonLocation
Members
| Member name | Value | Description |
---|
| NorthEast | 0 |
The balloon will be rendered to the North-East of the PushPin icon.
|
| NorthWest | 1 |
The balloon will be rendered to the North-West of the PushPin icon.
|
| SouthEast | 2 |
The balloon will be rendered to the South-East of the PushPin icon.
|
| SouthWest | 3 |
The balloon will be rendered to the South-West of the PushPin icon.
|
Examples BalloonPushPin bpp = new BalloonPushPin(new LatLon(34, -117));
bpp.PreferredLocation = BalloonLocation.SouthEast;
myRendererList.Add(bpp);
See Also