码迷,mamicode.com
首页 > 其他好文 > 详细

ArcGIS Pro How to remove standalone table from contents

时间:2020-04-04 00:15:12      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:content   lan   arc   move   tor   queue   cgi   gis   contents   

try
{
     var mapView = MapView.Active;
     if (mapView != null)
     {
          var map = mapView.Map;
          if (map != null)
          {
               foreach (StandaloneTable table in map.StandaloneTables)
               {
                    if (table.Name.Contains("K Factors"))
                     
QueuedTask.Run(()=>
{
  map.RemoveStandaloneTable(table);
}

               }
          }
     }
}
catch (Exception ex)
{
}

ArcGIS Pro How to remove standalone table from contents

标签:content   lan   arc   move   tor   queue   cgi   gis   contents   

原文地址:https://www.cnblogs.com/gisoracle/p/12629458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!