Click or drag to resize

BalloonPushPinName Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets or sets the name of the balloon, which will appear as its title.

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

Property Value

Type: String
Remarks
If the ShowBalloon property is true then Name will be shown regardless of the state of the ShowInformation property.
Examples
C#
// Forces title display, even with loadAddress set to 'false'
   BalloonPushPin myPin1 = new BalloonPushPin(new LatLon(33.584224, -117.737976), false);
   myPin1.Name = "Force Display";

// Overrides the name specified in the constructor
   BalloonPushPin myPin2 = new BalloonPushPin("Name Text (Upper)", new LatLon(33.584220, -117.737977));
   myPin2.Name = "Overrides the Previous Name Text (Upper)";
See Also