如何从自定义 Sharepoint 工作流程中关联项目的字段中提取值?

发布于 2024-07-10 02:10:42 字数 299 浏览 5 评论 0原文

我正在 Visual Studio 2008 中创建自定义 WSS 工作流程,并有一个“创建任务”活动。 创建任务时,我希望能够引用与工作流程关联的列表项中的一些字段值,并且在我的一生中,我似乎无法确定如何获取该工作流字段中的值物品。 我知道您可以使用:

workflowProperties.Item

访问项目本身,但如果我想检索该项目上名为“请求金额”的字段的值,我将如何做? 我见过“GetFromattedValue(string)”方法,但我并不真正想要格式化的值,原始字符串值确实是我想要的。

I'm creating a custom WSS workflow in Visual Studio 2008 and have a 'create task' activity. When creating the task I want to be able to reference some of the field values from the list item that is associated with the workflow and for the life of me I can't seem to determine how to get at the values within the fields on that item. I know that you can use:

workflowProperties.Item

to access the item itself, but if I want to retrieve the value of a field on that item that's called 'Amount Requested' how would I go about doing that? I've seen the 'GetFromattedValue(string)' method, but I don't really want the formatted value, a raw string value is really all I want.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘦怹 2024-07-17 02:10:42

flowProperties.Item 只是一个 SPListItem,这意味着您可以使用 SPListItem["named_column"] 访问它:

SPListItem item =workflowProperties.Item;
string amountRequested = item["请求金额"];

.b

workflowProperties.Item is just an SPListItem, meaning you can access it using SPListItem["named_column"]:

SPListItem item = workflowProperties.Item;
string amountRequested = item["Amount Requested"];

.b

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文