我使用以下代码迭代Microsoft Word文档中的所有书签:
foreach (var bookmark in _document.Range.Bookmarks.Cast<Bookmark>())
{
//code
}
如何判断bookmark
是否包含嵌套书签?我需要根据书签中是否有其他书签来执行一组单独的逻辑。
答案 0 :(得分:0)
上述foreach循环将获取Bookmark的所有实例。获取嵌套书签有点棘手,因为Aspose.Words中没有直接的API来执行此操作。
我编写了一个程序来执行此操作,源代码不小,所以我在Google Drive上共享Visual Studio项目here。
以下是摘要
foreach (var bookmark in wordDoc.Range.Bookmarks.Cast<Aspose.Words.Bookmark>())
{
Console.WriteLine(bookmark.Name);
// Get all the nodes between bookmark start and end
ArrayList extractedNodes = ExtractContent(bookmark.BookmarkStart, bookmark.BookmarkEnd, true);
for (int i = 0; i < extractedNodes.Count; i++)
{
// Skip first and last nodes
if (i == 0 || i == extractedNodes.Count - 1)
continue;
// See if there is any bookmarks in this node
Node node = (Node)extractedNodes[i];
if (node.Range.Bookmarks.Count > 0)
Console.WriteLine("Nested bookmark found");
}
}
有关ExtractContent()方法的详细信息,请访问http://www.aspose.com/docs/display/wordsnet/Extract+Content+Overview+and+Code