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

GP下CalculateField的用法

时间:2019-07-05 00:20:46      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:ring   subitems   ext   void   get   记录   bit   exp   text   

以前用过这个类做字段计算,许久不用有些忘却,记录一下使用方式

   public static void CalculateField(IFeatureLayer featureLayer,IField field,string expression)
        {
           Geoprocessor gp = new Geoprocessor { OverwriteOutput = true };

           CalculateField cal = new CalculateField()
           {
               in_table =  featureLayer,
               field = field.Name,
               expression = expression,
               expression_type = "PYTHON_9.3"
           };
           gp.Execute(cal, null);
        }

调用时,如果expression为"",即空,需要这样使用:"\"\""

CalculateField(pFeatureLayer,pFeatureLayer.FeatureClass.Fields.get_Field( pFeatureLayer.FeatureClass.FindField( item.SubItems[1].Text)), "\"\"");

GP下CalculateField的用法

标签:ring   subitems   ext   void   get   记录   bit   exp   text   

原文地址:https://www.cnblogs.com/yzhyingcool/p/11135597.html

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