标签: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