Hi All,
I am having a problem with EditClear. It clears the shapefile but appears to leave the attribute table intact. The code I'm using is below.
Many thanks,
Don
I am having a problem with EditClear. It clears the shapefile but appears to leave the attribute table intact. The code I'm using is below.
Many thanks,
Don
Shapefile sf = new Shapefile();
sf.Open(@"C:\mysf.shp", null);
sf.StartEditingShapes(true, callback);
sf.EditClear();
sf.StopEditingShapes(true, true, callback);