zoukankan      html  css  js  c++  java
  • SharePoint 2010 动态创建calculate column

     static void Main(string[] args)
            {
                using (SPSite site = new SPSite("http://serverName/sites/Vijai/"))
                {
                    using (SPWeb web = site.OpenWeb())
                    {
                        SPList list = web.Lists.TryGetList("Custom");
                        if (list != null)
                        {
                            ////Create a calculated field                  
                            string calculatedColumn = list.Fields.Add("CalculatedColumn", SPFieldType.Calculated, false);
                            ////Get the newly created calculated field                     
                            SPFieldCalculated calculatedField = list.Fields[calculatedColumn] as SPFieldCalculated;
                            ////Set the calculated field formula                     
                            calculatedField.Formula = "=[Title]";
                            ////Set the data type returned from this formula               
                            calculatedField.OutputType = SPFieldType.Text;
                            ////Update the calculated field                     
                            calculatedField.Update();
                        }
                    }
                }
            }
  • 相关阅读:
    我的第一篇博客
    文献笔记5
    文献笔记4
    文献笔记8
    文献笔记6
    文献笔记10
    文献笔记7
    文献笔记1
    文献笔记2
    文献笔记3
  • 原文地址:https://www.cnblogs.com/ahghy/p/2954012.html
Copyright © 2011-2022 走看看