(C#) 如何从 Word 或 Excel 文件检索作者/评论属性?

发布于 2024-11-17 06:47:13 字数 163 浏览 1 评论 0原文

我需要从 Excel 或 Word 文件中读取注释... 有什么想法吗?

我尝试了 FileVersionInfo 似乎不起作用。

我还尝试使用 Shell32 选项,它确实有效。似乎路途遥远……

有更快的方法吗?

谢谢

I need to read the Comments in from a Excel or Word file...
Any ideas?

I tried FileVersionInfo didn't seem to work.

I also tried using the Shell32 option, which did work. Just seems like the long way round...

Is there a quicker way?

Thanks

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

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

发布评论

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

评论(1

箹锭⒈辈孓 2024-11-24 06:47:13

您是在谈论修订版的评论吗?您可以使用 文档.评论

Comments comments = yourwordDoc.Comments;
        foreach (var comment in comments)
        {
            var text = comment.Range.Text;


        }

Are you talking about the comments from Revisions? You can use Document.Comments

Comments comments = yourwordDoc.Comments;
        foreach (var comment in comments)
        {
            var text = comment.Range.Text;


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