zoukankan      html  css  js  c++  java
  • ArcGIS Pro C#二次开发-删除字段

    using System;
    using System.Collections.Generic;
    using System.Linq;
    //using System.Windows;
    //using System.Windows.Forms;
    
    
    using System;
    
    using System.Collections.Generic;
    
    using System.Linq;
    
    using System.Text;
    
    using System.Threading;
    
    using System.Threading.Tasks;
    
    using ArcGIS.Desktop.Core.Geoprocessing;
    
    using ArcGIS.Desktop.Framework;
    
    using ArcGIS.Desktop.Framework.Contracts;
    
    using ArcGIS.Desktop.Framework.Dialogs;
    
    using ArcGIS.Desktop.Mapping;
    
    namespace ProAppModule1
    {
        internal class Button1 : ArcGIS.Desktop.Framework.Contracts.Button
        {
            string delFieldName = "AddedField";//需要删除的字段
            protected override async void OnClick()
    
            {
    
                try
    
                {
    
                    BasicFeatureLayer layer = null;
    
                    await ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask.Run(() =>
    
                    {
    
                        //find selected layer
    
                        if (MapView.Active.GetSelectedLayers().Count == 0)
    
                        {
    
                            MessageBox.Show("Select a feature class from the Content 'Table of Content' first.");
    
                            return;
    
                        }
    
                        layer = MapView.Active.GetSelectedLayers()[0] as BasicFeatureLayer;
    
    
    
                    });
    
                    if (layer == null)
    
                        MessageBox.Show("Unable to find a feature class at the first layer of the active map");
    
                    else
    
                    {
    
                        var dataSource = await GetDataSource(layer);
    
                        MessageBox.Show($@"{dataSource} was found .... deleting the newly added field");
    
                        await
    
                            ExecuteDeleteFieldTool(layer, delFieldName);
    
                    }
    
                }
    
                catch (Exception ex)
    
                {
    
                    MessageBox.Show(ex.ToString());
    
                }
    
            }
    
    
    
            private async Task<string> GetDataSource(BasicFeatureLayer theLayer)
    
            {
    
                try
    
                {
    
                    return await ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask.Run(() =>
    
                    {
    
                        var inTable = theLayer.Name;
    
                        var table = theLayer.GetTable();
    
                        var dataStore = table.GetDatastore();
    
                        var workspaceNameDef = dataStore.GetConnectionString();
    
                        var workspaceName = workspaceNameDef.Split('=')[1];
    
    
    
                        var fullSpec = System.IO.Path.Combine(workspaceName, inTable);
    
                        return fullSpec;
    
                    });
    
                }
    
                catch (Exception ex)
    
                {
    
                    MessageBox.Show(ex.ToString());
    
                    return string.Empty;
    
                }
    
            }
    
    
    
            private async Task<bool> ExecuteDeleteFieldTool(BasicFeatureLayer theLayer, string fieldName)
    
            {
    
                try
    
                {
    
                    return await ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask.Run(() =>
    
                    {
    
                        var inTable = theLayer.Name;
    
                        var table = theLayer.GetTable();
    
                        var dataStore = table.GetDatastore();
    
                        var workspaceNameDef = dataStore.GetConnectionString();
    
                        var workspaceName = workspaceNameDef.Split('=')[1];
    
    
    
                        var fullSpec = System.IO.Path.Combine(workspaceName, inTable);
    
                        System.Diagnostics.Debug.WriteLine($@"Delete {fieldName} from {fullSpec}");
    
    
    
                        var parameters = Geoprocessing.MakeValueArray(fullSpec, fieldName);
    
                        var cts = new CancellationTokenSource();
    
                        var results = Geoprocessing.ExecuteToolAsync("management.DeleteField", parameters, null, cts.Token,
    
                            (eventName, o) =>
    
                            {
    
                                System.Diagnostics.Debug.WriteLine($@"GP event: {eventName}");
    
                                if (eventName == "OnMessage")
    
                                {
    
    
    
                                    System.Diagnostics.Debug.WriteLine($@"Msg: {o}");
    
                                }
    
                            });
    
                        return true;
    
    
    
                    });
    
                }
    
                catch (Exception ex)
    
                {
    
                    MessageBox.Show(ex.ToString());
    
                    return false;
    
                }
    
            }
    
    
    
        }
    }
  • 相关阅读:
    Linux常用性能检测命令
    Linux环境下获取网卡连接状态
    posix多线程有感线程高级编程(均衡负载CPU绑定)
    posix多线程有感线程高级编程(线程调度以及优先级设置)
    posix多线程有感线程高级编程(线程和fork,exec)
    posix多线程有感线程高级编程(进程的优先级)
    linux多线程和锁
    posix多线程有感—sysconf系统变量
    posix多线程有感线程高级编程(线程堆栈)
    Linux基本网络设置(IP配置等,网卡驱动缓存,网卡中断)
  • 原文地址:https://www.cnblogs.com/gisoracle/p/12464700.html
Copyright © 2011-2022 走看看