Hides popup windows that are visible in the application.

Namespace:  ESRI.ArcGISExplorer.Mapping

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

Syntax

C#
public void HidePopups(
	bool includePinned
)
Visual Basic (Declaration)
Public Sub HidePopups ( _
	includePinned As Boolean _
)

Parameters

includePinned
Type: System..::.Boolean

A value indicating if pinned popup windows should be hidden.

Remarks

The ArcGIS Explorer application has a constraint that only a single popup window can be both visible and active at any time. Users can control the visibility of popups by using the pin symbol in the top right corner of the window. "Pinning" a popup causes the window to stay visible when a another popup is activated; if a popup is not pinned it will automatically be hidden when another popup is activated. Use this method to hide multiple popup windows; if includePinned is set to trueTruetruetrue (True in Visual Basic) all popup windows will be hidden regardless of their pinned state, if falseFalsefalsefalse (False in Visual Basic) only unpinned popups will be hidden.

See Also