gpt4 book ai didi

c# - 在 c# Visual Studio 2010 中检索 Sharepoint 选择字段的值

转载 作者:行者123 更新时间:2023-11-30 19:20:13 25 4
gpt4 key购买 nike

在 EventReceiver 上,我想使用 c# 在列表的 Sharepoint 2010 Choice 字段中检索所有选定的值。谁能建议/提供有关如何从 Choice 字段中读取所有值的代码片段?

谢谢

最佳答案

请参阅此博文。这是这样做的正确方法。 http://www.c-sharpcorner.com/Blogs/10257/

SPFieldMultiChoiceValue choices = new SPFieldMultiChoiceValue(item["MultiChoice"].ToString());
for (int i = 0; i < choices.Count; i++)
{
Console.WriteLine(choices[i]);
}

关于c# - 在 c# Visual Studio 2010 中检索 Sharepoint 选择字段的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7009436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com