Gets the popup window associated with the View.

Namespace:  ESRI.ArcGISExplorer.Mapping

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

Syntax

C#
public Popup Popup { get; }
Visual Basic (Declaration)
Public ReadOnly Property Popup As Popup

Field Value

A Popup object that represents the popup window associated with the View.

Remarks

Use this property to retrieve a Popup object for a View; this enables you to programmatically activate\hide the popup window and change the popup content.

The Title is automatically set to the value of the View.Name property: these two properties are synonymous, so changing the Popup.Title will change the View.Name and vice versa.

The SetTarget(Point) method is not supported by View.Popup; calling this method will result in an InvalidOperationException.

See Also