Gets the owner of the popup window; only applicable for MapItem popups.

Namespace:  ESRI.ArcGISExplorer.Mapping

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

Syntax

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

Field Value

The MapItem that contains this popup; nullNothingnullptra null reference (Nothing in Visual Basic) for temporary popup windows.

Remarks

There are two types of popup window:

  • A MapItem Popup is implicitly instantiated whenever you create a MapItem that exposes a Popup property, for example a Note or View.
  • A Temporary Popup is explicitly instantiated using the Popup constructors; this type of Popup is not linked to a MapItem instance.
For MapItem popups this property will return the associated MapItem; for temporary popup windows this property will return nullNothingnullptra null reference (Nothing in Visual Basic)

See Also