//显示table of Content内容
        private void OpenContenWindow()//over视图
        {
            IMxDocument mxDocument = m_application.Document as IMxDocument;
            int num = mxDocument.ContentsViewCount;
            for (int i = 0; i < num; i++)
            {
                ESRI.ArcGIS.ArcMapUI.IContentsView contentsView = mxDocument.get_ContentsView(i);
                MessageBox.Show(i.ToString() + ":" + contentsView.Name);
            }

            //MessageBox.Show(  .ToString());
        }

相关文章:

  • 2021-08-15
  • 2021-04-07
  • 2021-12-19
  • 2022-12-23
  • 2022-12-23
  • 2021-06-02
  • 2021-06-22
  • 2022-02-24
猜你喜欢
  • 2021-12-22
  • 2022-01-14
  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
  • 2021-11-20
  • 2021-12-06
相关资源
相似解决方案