Gets the popup window associated with the Note.

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 Note.

Remarks

Use this property to retrieve a Popup object for a Note; 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 Note.Name property: these two properties are synonymous, so changing the Popup.Title will change the Note.Name and vice versa.

The SetTarget(Point) method is not supported by Note.Popup; calling this method will result in an InvalidOperationException. The target of the Note.Popup is automatically set to the center of the Note.Graphic.

See Also