Hi,
I have a document which I am manipulating with Aspose.net Words. Everything is working perfectly except for some titles in the Table Of Contents that contain autofields.
In the Word document these fields are automatically incremented like chapter headers, but instead of a number, they are represented by a letter.
After calling UpdateFields on the document, the TOC is updated, but the autofields are shown as numbers and not as letters.
In Attachement you can find the source and resulting file. The code I use is very simple:
Document doc = new Document(“input.doc”);
doc.UpdateFields();
doc.Save(output.docx);
The output extension does not make a difference in result.