Click or drag to resize

BalloonPushPinShowInformation Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets or sets whether the balloon will display its information. True (shown) by default.

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

Property Value

Type: Boolean
Remarks
If the ShowBalloon property is true then Name will be shown regardless of the state of this property.
Examples
C#
BalloonPushPin myPin = new BalloonPushPin(new LatLon(33.584224, -117.737976));
// Hide balloon information
myPin.ShowInformation = false;
See Also