Occurs when one or more Graphics are clicked in the map display.

Namespace:  ESRI.ArcGISExplorer.Mapping

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

Syntax

C#
public event EventHandler<GraphicMouseEventArgs> GraphicClicked
Visual Basic (Declaration)
Public Event GraphicClicked As EventHandler(Of GraphicMouseEventArgs)

Remarks

A Graphic represents a shape with associated symbology that can be added to a map. The GraphicMouseEventArgs argument provides access to the graphic which were clicked, and other properties of the click event. Multiple graphics can be returned if they are coincident at the location of the click.

This event will also fire when one or more Notes are clicked, as a note has a Graphic as a consituent part.

Note that the access to multiple graphics is supported from ArcGIS Explorer 2.0.0.1500 onwards.

See Also