1 public void ChangeBB(string filePath,string fileName)
 2         {
 3             IMxdContents pMxdC = axMapControl1.Map as IMxdContents;
 4             IMapDocument pMapDocument = new MapDocumentClass();
 5             pMapDocument.New(string.Format("{0}/{1}",filePath,fileName));
 6             IDocumentVersion docversion = (IDocumentVersion)pMapDocument;
 7             docversion.DocumentVersion = esriArcGISVersion.esriArcGISVersion93;
 8             IActiveView pActiveView = axMapControl1.Map as IActiveView;
 9             pMapDocument.ReplaceContents(pMxdC);
10             pMapDocument.Save(true, true);
11         }

 

相关文章:

  • 2021-08-19
  • 2021-07-17
  • 2021-07-31
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2021-12-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2022-01-06
  • 2022-01-18
  • 2021-11-05
相关资源
相似解决方案