0

I want to click on a feature of shapefile in arc engine c# project and change the selected feature's attributes by code.

Roozi
  • 683
  • 6
  • 12

1 Answers1

1

You can use FeatureClass.serach method with SpatialFilter. Via SpatialFilter you can define your clicked point as a geometry of selection area( use intersect relationship). The answer of the Search method is IFeatureCursor. You can read and update features using FetaureCursor.

Dima S.
  • 56
  • 2