使用 VBA 或 VSTO 从存储在 SharePoint 中的 Word 文档读取/写入人员元数据?

发布于 2024-07-04 23:20:37 字数 341 浏览 6 评论 0原文

场景:SharePoint 中的文档库,其中 x 列类型为“个人或组”。 从 VBA 宏(或 VSTO 加载项)中,我们尝试访问文档上的 MetaProperty 以设置/获取用户名。 任何通过 ContentTypeProperties 集合访问该值的尝试都会抛出

类型不匹配错误 (13)。

MetaProperty 对象的 Type 属性表示它是 msoMetaPropertyTypeUser。 我找不到任何有关如何使用这种类型的 MetaProperties 的示例。 有人对此有经验吗?

谢谢!

Scenario: Document library in SharePoint with column x of "Person or Group" type. From within a VBA macro (or VSTO add-in) we're trying to access the MetaProperty on the document to set/get the user name. Any attempt to access the value via the ContentTypeProperties collection throws a

Type MisMatch error (13).

The Type property of the MetaProperty object says it's msoMetaPropertyTypeUser. I cannot find any examples of how to work with MetaProperties of this type. Anyone have any experience with this?

Thanks!

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

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

发布评论

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

评论(2

海的爱人是光 2024-07-11 23:20:37

您应该能够执行如下操作:

    using (SPSite site = new SPSite("http://yoursite/subsite"))
    {
        using (SPWeb web = site.OpenWeb())
        {
            SPList list = web.Lists["DocLibraryName"];
            SPListItemCollection items = list.GetItems(list.Views["All Documents"]);
            foreach (SPListItem item in items)
            {
                item["Modified By"] = "Updated Value";
            }
        }
    }

文档的任何元数据都应该可以通过索引 SPListItem 的列名来获得。

You should be able to just do something like this:

    using (SPSite site = new SPSite("http://yoursite/subsite"))
    {
        using (SPWeb web = site.OpenWeb())
        {
            SPList list = web.Lists["DocLibraryName"];
            SPListItemCollection items = list.GetItems(list.Views["All Documents"]);
            foreach (SPListItem item in items)
            {
                item["Modified By"] = "Updated Value";
            }
        }
    }

Any metadata for a document should be available by indexing the column name of the SPListItem.

打小就很酷 2024-07-11 23:20:37

我做到了。

这里的技巧其实是要知道,如果你在Word文档的自定义属性中放入MOSS users中用户索引对应的字符串,MOSS就会识别它并找到对应的用户来映射字段。

所以你只需要调用http:///_vti_bin/usergroup.asmx
使用函数 GetUserInfo 并从中检索用户索引 (ID)。

MOSSusergroup.UserGroup userGroupService = new MOSSusergroup.UserGroup();
userGroupService.Credentials = System.Net.CredentialCache.DefaultCredentials;
System.Xml.XmlNode node = userGroupService.GetUserInfo(userLogin);
string index = node.FirstChild.Attributes["ID"].Value;

I did it.

The trick here is actually to know that if you put a string corresponding to the user index in MOSS users in the custom property of the Word document, MOSS will recognize it and find the corresponding user to map the field.

so you just need to call http:///_vti_bin/usergroup.asmx
use the function GetUserInfo and retrieve the user index (ID) from it.

MOSSusergroup.UserGroup userGroupService = new MOSSusergroup.UserGroup();
userGroupService.Credentials = System.Net.CredentialCache.DefaultCredentials;
System.Xml.XmlNode node = userGroupService.GetUserInfo(userLogin);
string index = node.FirstChild.Attributes["ID"].Value;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文