as i have problems when i am converting Word document to PDF format by saving as a PDF.
If you look at the original document and compares this with converted so they do not look alike, there is no "bold" in the text.
See attached document in the zip-arhive.
I am using this code...
Aspose.Words.LoadOptions mlo = new Aspose.Words.LoadOptions();
mlo.LoadFormat = Aspose.Words.LoadFormat.Docx;
Aspose.Words.Document mDocument = new Aspose.Words.Document(fileName, mlo);
mDocument.Save(@mTempPath + mFileName + ".pdf", Aspose.Words.SaveFormat.Pdf);
mDocument = null;