Dear Aspose Team.
I’m converting a wordML file to a PDF file. In the page header is a table with text inside. After converting, the table has partially moved out of right of the document. Do you have any idea?
See code below. WordML is attached.
Thanks for helping.
[C#]
Aspose.Words.Document wordDocument = new Document(wordMLStream, null, LoadFormat.WordML, null);
wordDocument.UpdateFields();
wordDocument.Save(tempDocStream, SaveFormat.AsposePdf);
Aspose.Pdf.Pdf pdfDocument = new Pdf();
pdfDocument.BindXML(tempDocStream, null);
pdfDocument.SetUnicode();
pdfDocument.Save(targetFilename);