Please see attached files of correct Word table conversion from a Word doc to PDF. The Syncfusion conversion is not correct. Code used is:
using (var wordDocument = new Syncfusion.DocIO.DLS.WordDocument(file))
{
wordDocument.ChartToImageConverter = new Syncfusion.OfficeChartToImageConverter.ChartToImageConverter();
using (var converter = new Syncfusion.DocToPDFConverter.DocToPDFConverter())
{
using (var pdfDocument = converter.ConvertToPDF(wordDocument))
{
var savePath2 = Path.ChangeExtension(Path.Combine(Path.Combine(Path.GetDirectoryName(file), "Converted"), Path.GetFileNameWithoutExtension(file)) + "_Sync", "pdf");
pdfDocument.Save(savePath2);
}
}
}