Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

MapControl.ObjectSelected Event

Occurs before any map element is selected at runtime.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v24.2.dll

NuGet Package: DevExpress.Win.Map

#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