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

MapItemSettingsBase.IsHitTestVisible Property

Gets or sets a value that defines whether or not a map item can be returned as a hit-testing result.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v18.2.dll

Declaration

public bool IsHitTestVisible { get; set; }

Property Value

Type Description
Boolean

true if the map item can be shown as the result of hit testing; otherwise false.

Property Paths

You can access this nested property as listed below:

Show 15 property paths
Object Type Path to IsHitTestVisible
BubbleChartDataAdapter
.BubbleSettings.IsHitTestVisible
DistanceBasedClusterer
.ClusterSettings.IsHitTestVisible
ListSourceDataAdapter
.ItemSettings.IsHitTestVisible
MapClusterer
.ClusterSettings.IsHitTestVisible
MapCustomElementSettings
.Default.IsHitTestVisible
MapDotSettings
.Default.IsHitTestVisible
MapEditorCreateMode
.MapItemSettings.IsHitTestVisible
MapEllipseSettings
.Default.IsHitTestVisible
MapLineSettings
.Default.IsHitTestVisible
MapPathSettings
.Default.IsHitTestVisible
MapPolylineSettings
.Default.IsHitTestVisible
MapPushpinSettings
.Default.IsHitTestVisible
MapRectangleSettings
.Default.IsHitTestVisible
MarkerClusterer
.ClusterSettings.IsHitTestVisible
PieChartDataAdapter
.PieSettings.IsHitTestVisible

Remarks

If the IsHitTestVisible property is set to false, the map item ignores any input events and hit testing. So by default, this property is set to true.

To get hit-testing information, use the MapControl.CalcHitInfo method.

See Also