Hi, we have attached a docx document containing 5 SDTs.
The problem is that the GetChildNodes
method only find 1 SDT. It does not find the SDTs containing Section Breaks.
var docx = new Document("Test1.docx");
var nodes = docx.GetChildNodes(NodeType.StructuredDocumentTag, true);
Console.WriteLine(nodes.Count);
Until Aspose.Words version 19.6 this method was working well, and it was finding all 5 SDTs. But with the latest version of Aspose.Words it is not returning all SDTs. Is there a way to overcome this issue?
Attached docx.zip (17.0 KB)