Hi.
I want to be able to delete/remove column from the dbf file as I was able to do that using Desktop Edition 2.0.
I'm able to add new column but do not see any method to accomplish that:
ShapeFileFeatureLayer shapeLayer = new ShapeFileFeatureLayer (@"");
ShapeFileFeatureSource featureSource = (ShapeFileFeatureSource)shapeLayer.FeatureSource;
shapeLayer.Open();
featureSource.BeginTransaction();
//add new column
featureSource.AddColumnDouble("Area", 10, 4);
//how delete existing column???
//featureSource......
featureSource.CommitTransaction();
shapeLayer.Close();