使用 VBA 或 VSTO 从存储在 SharePoint 中的 Word 文档读取/写入人员元数据?
场景: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够执行如下操作:
文档的任何元数据都应该可以通过索引 SPListItem 的列名来获得。
You should be able to just do something like this:
Any metadata for a document should be available by indexing the column name of the SPListItem.
我做到了。
这里的技巧其实是要知道,如果你在Word文档的自定义属性中放入MOSS users中用户索引对应的字符串,MOSS就会识别它并找到对应的用户来映射字段。
所以你只需要调用http:///_vti_bin/usergroup.asmx
使用函数 GetUserInfo 并从中检索用户索引 (ID)。
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.