Hi Team,
We are facing using with Track changes in word. When we create content control in document programmatically using Aspose java code , and open the document in word and enable track changes and make changes in content control , then it is not working properly. It is not showing red lining to the data we have updated. It works fine for content controls created using word. Please check and help us.
Sample code used to create content control :
StructuredDocumentTag sdt1 = new StructuredDocumentTag(document, SdtType.PLAIN_TEXT, MarkupLevel.INLINE);
sdt1.removeAllChildren();
sdt1.appendChild(new Run(document, "Content control"));
documentBuilder.insertNode(sdt1);
Attaching word file for reference :
track_change_issue.zip (13.8 KB)
Please help.