Hi All,
do you now a way to determine what kind of edits are made on a feature?
So, by the "OnUpdate" event handler is easy manage a generic edit event on a feature, but seems no possible to now if the edit concern the geometry or an attribute (and, obiouvsly, WHICH attribute).
Could you help me?
Thanks
Fabiano
Solved! Go to Solution.
You can use IRowChanges and IFeatureChanges, just QI to an existing IFeature object.
You can use IRowChanges and IFeatureChanges, just QI to an existing IFeature object.
I agree with Jeff. IRowChanges would reflect when a non-geometry attribute is updated. IFeatureChanges would reflect when there are changes to the geometry. You could utilize these within an Editor Extension.
IRowChanges Interface
http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//0025000007vw000000
IFeatureChanges Interface
http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//0025000002qp000000
Thank you so much Jeff! it's what I need.