Initializes a new instance of the Popup class that represents a temporary Popup, with the specified content, title, and 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,
	string content,
	string title,
	Point target
)
Visual Basic (Declaration)
Public Sub New ( _
	mapDisplay As MapDisplay, _
	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.
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.

Remarks

This new constructor provides an alternative to the existing similar constructor which includes an Icon parameter, as the Icon property of a Popup is now marked as obsolete.

Version Information: This member is supported from version 2.0.0.1500.

See Also