Hi,
We are converting the attached Word doc file to pdf using next code:
var inputDocument = new Aspose.Words.Document(inputFileFullName);
var pdfSaveOptions = new Aspose.Words.Saving.PdfSaveOptions
{
DmlRenderingMode = Aspose.Words.Saving.DmlRenderingMode.DrawingML
};
pdfSaveOptions.OutlineOptions.HeadingsOutlineLevels = 9;
inputDocument.Save(outputFileFullName, pdfSaveOptions);
The result pdf file has a broken layout (see attachment).
hgrgplc4.zip (6.4 KB)
hgrgplc4.pdf (60.2 KB)
Best regards
Valeriy