Table t = cata.GetTable("World");
Feature f = cata.SearchForFeature(t, MapInfo.Data.SearchInfoFactory.SearchWhere("Country='Japan'"));
DPoint dp = new DPoint(f.Geometry.GeometricCentroid.x, f.Geometry.GeometricCentroid.y);
f.Geometry.GeometryEditor.Rotate(dp, 90);
f.Geometry.EditingComplete();
t.UpdateFeature(f);
mapControl1.Map.SetView(f);