Dear Aspose Team.
I’m converting a wordML file with a bulletlist inside to a DOC file (word97 - 2003 format). In the result file is still the list, but without the bulletpoints. Do you have any idea?
See Code below. WordML is attached.
Thanks for helping.
[C#]
Aspose.Words.Document wordDocument = new Document(wordMLPath);
wordDocument.UpdateFields();
wordDocument.Save(resultPath, SaveFormat.Doc);