ArcGIS4LocalGovernment.AAState.FabricGeometryRowChange C# (CSharp) Method

FabricGeometryRowChange() public static method

public static FabricGeometryRowChange ( ESRI obj ) : void
obj ESRI
return void
        public static void FabricGeometryRowChange(ESRI.ArcGIS.Geodatabase.IObject obj)
        {
            if (obj is IFeature)
            {
                IFeatureChanges pFeatChanges = obj as IFeatureChanges;
                if (!pFeatChanges.ShapeChanged)
                    return;
                if (pFeatChanges.OriginalShape.IsEmpty) //means new fabric parcel
                    return;
            }

            if (InMemTableExistsForRow(obj))
                FeatureGeoChange(obj);
        }