Skip to main content
A newer version of this page is available. .

MapControl.ObjectSelected Event

Occurs before any map element is selected at runtime.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v18.2.dll

Declaration

public event ObjectSelectedEventHandler ObjectSelected

Event Data

The ObjectSelected event's data class is ObjectSelectedEventArgs. The following properties provide information specific to this event:

Property Description
Object Returns the data object whose map representation was selected.

Remarks

An end-user is able to select some items of the MapControl at runtime if the MapControl.SelectionMode property is not set to None. Handle the ObjectSelected event if you want to perform specific actions when an end-user selects a map element, or if you want to disable the selection of particular elements. Note that the currently selected element of the map can be accessed using the ObjectSelectedEventArgs.Object property.

See Also