Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在寻找解决这个问题的方法。
我需要从 word 文档中提取所有书签,以便我可以随意操作它们。所以我想我只需要引用它们而不是实际的书签。
到目前为止,我发现的只是您需要搜索书签名称的解决方案,但我只想获取对所有书签的引用。我可能一直不知道他们的名字。我以为我可以通过调用来获取书签,MyDocument.Bookmarks但到目前为止我还没有弄清楚如何使用该属性。
MyDocument.Bookmarks
如果我从模板中提取书签,名称不会改变。但是,如果我从未知文档中获取书签,我不知道如何获取参考。
有什么帮助吗?
foreach (Bookmark bookmark in document.Bookmarks) { // Do whatever you want with the bookmark. }