ISSUE with converting word to PDF - ignores redlines made to document

Hi,
We are having another issue. How does aspose handle if I have a word document that has been redlined. It seems to ignore any of the redlines (even when the document is saved as final) and when we convert to PDF it is just displaying the original document.

  1. Ignores items delete or redlined

Is this suppose to operate like this its causing significant issue with us and altering the content of our contracts that are sent to our customers.
I have also included an example of the word doc and the resulting PDF

Hi Nick,

Thank you for reporting this problem to us. Unfortunately, Aspose.Words does not support revisions upon rendering. Please follow the link to learn what document features are supported upon rendering:
https://docs.aspose.com/words/net/convert-a-document-to-pdf/
If you need to get final document, you can accept revisions before converting document to PDF. For instance, see the following code:

// Open document.
Document doc = new Document(@"Test001\in.doc");
// Accept all revisions.
doc.AcceptAllRevisions();
// Save PDF.
doc.Save(@"Test001\out.pdf");

Best regards,

The issues you have found earlier (filed as WORDSNET-2120) have been fixed in this .NET update and this Java update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(34)