Get contents of Bookmark within a table with merged cells

Many thanks for that.

Regards,
Marios

Hi Marios,

Regarding WORDSNET-13153, we believe that you can meet this requirement by using a method GetChildNodes on CompositeNote class with NodeType.Any and isDeep=true as parameters.

NodeCollection children = ((CompositeNode)tempNode).GetChildNodes(NodeType.Any, true);
foreach (CompositeNode child in children)
{
     // here you get the children of tmpnode
}

Hope, this helps.

Best regards,

The issues you have found earlier (filed as WORDSNET-12678) have been fixed in this Aspose.Words for .NET 19.12 update and this Aspose.Words for Java 19.12 update.