作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用
SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchOptions)`
最佳答案
添加出现在“快速启动”区域中的文档库
艰难的方式-使用Add(String, String, String, String, Int32, String, String, SPFeatureDefinition, SPListTemplate.QuickLaunchOptions)方法重载
web.Lists.Add("Old documents",
"This library stores old documents.",
"old-docs",
"00BFEA71-E717-4E80-AA17-D0C71B360101",
101,
"101",
SPListTemplate.QuickLaunchOptions.On);
featureId
参数(第四个)是一个字符串,其中包含定义列表的功能的ID;您可以在线找到标准列表定义的功能ID(here,here或here)或在12个配置单元Guid newListGuid = web.Lists.Add("Old documents",
"This library stores old documents.",
SPListTemplateType.DocumentLibrary);
SPList newList = web.Lists[newListGuid];
newList.OnQuickLaunch = true;
newList.Update();
关于.net - 在sharepoint中使用SPListCollection.Add方法(字符串,字符串,字符串,字符串,Int32,字符串,SPListTemplate.QuickLaunchOptions),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3863779/
我需要从列表模板中获取所有字段吗?我该怎么做? var web = site.OpenWeb(); var template = web.ListTemplates["SomeTemplate"];
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我是一名优秀的程序员,十分优秀!