Initializes a new instance of the Popup class that represents a temporary Popup, with an associated target location.

Namespace:  ESRI.ArcGISExplorer.Mapping

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public Popup(
	MapDisplay mapDisplay,
	Image icon,
	string content,
	string title,
	Point target
)
Visual Basic (Declaration)
Public Sub New ( _
	mapDisplay As MapDisplay, _
	icon As Image, _
	content As String, _
	title As String, _
	target As Point _
)

Parameters

mapDisplay
Type: ESRI.ArcGISExplorer.Mapping..::.MapDisplay

The MapDisplay where the popup will be displayed when it is activated.
icon
Type: System.Drawing..::.Image

The icon displayed at the top left of the popup window.
content
Type: System..::.String

The content displayed in the textbox of the popup window; Can be plain text, XML or HTML.
title
Type: System..::.String

The title of the popup window.
target
Type: ESRI.ArcGISExplorer.Geometry..::.Point

The map location associated with the popup window.

See Also