Hello,
I get the Feature of a ShapeFileLayer on winformsMap_MapClick.
mylayer.Open()
Dim selectedFeatures As Collection(Of Feature) = Nothing
selectedFeatures = DirectCast(mylayer, FeatureLayer).QueryTools.GetFeaturesContaining(e.WorldLocation, ReturningColumnsType.AllColumns)
And selectedFeatures.count = 1
But if I create the layer as a MultipleShapeFileLayer (but only with one shapefile -the same as above),
then selectedFeatures.count = 0
Do you know why ?
Thank you for your help.