c#学习笔记-0520 (SharePointAPI)
时间:2014-05-21 20:11:30
收藏:0
阅读:288
根据SPContentType新建Item
Item01["ContentTypeId"] = LinkCT.Id;
Item01.Update();
取SharePoint Build-In ContentType或者Column
SPContentType LinkCT = web.ContentTypes[SPBuiltInContentTypeId.Link];
SPField Field = web.Fields[SPBuildInFieldId.Modify];
评论(0)