Hi,
We’re using aspose.words 5.1.1.0 to migrate from MS word automation. Currently we’re faced with following isssue: Is there any possibility to insert text(Run node) before and after text marked by comment?
For example with Interop we could do the following:
Range range = wordDocument.Comments[someIndex].Scope;
range.InsertBefore(“sometext1”);
range.InsertAfter(“sometext2”);
Thanks,
–Oleh