Problem when saving wordfile to PDF

I have a problem when saving this wordfile to a PDF.

In the wordfile there is a rich text content control control with the text “10-06-2015” but when I save the wordfile as a PDF the text is gone.

It is quite easy to test it:

Dim aspose As New Aspose.Words.Document()
aspose.Save("c:\pdffailtest.pdf")

Hi Morten,

Thanks for your inquiry. I have tested the scenario and have managed to reproduce the same issue at my side. For the sake of correction, I have logged this problem in our issue tracking system as WORDSNET-11989. I have linked this forum thread to the same issue and you will be notified via this forum thread once this issue is resolved.

We apologize for your inconvenience.

Hi Tahir Manzoor,
Do you have news about a bugfix? Is this issue fixed in a newer version of Aspose or there a fix planned in the releaseplan?
Kind regards,
Sven

Hi there,

Thanks
for your inquiry. I would like to
share with you that issues
are addressed and resolved based on first come first serve
basis. Currently, your issue is under analysis phase. Once your issue is analyzed, we will then be able to provide you
an estimate.

Thanks for your patience and understanding.

Hi Morten,

Thanks for your patience. It is to inform
you that the issue which you are facing is actually not a bug in
Aspose.Words. So, we have closed this issue (WORDSNET-11989) as ‘Not a
Bug’. We suggest you please use PdfSaveOptions.DmlRenderingMode as DmlRenderingMode.DrawingML to get the required output.

Document doc = new Document(MyDir + "Finansiel+leasing+tilbud.docx");
doc.Save(MyDir + "Out.pdf", new PdfSaveOptions() { DmlRenderingMode = DmlRenderingMode.DrawingML });