Hi!
I’m not able to display table-borders correctly in Word when I’m inserting html (tables) using Aspose.Words.
Is there a workaround to solve this?
See attachments for html and final result in Word.
Source:
DocumentBuilder documentBuilder = new DocumentBuilder(document);
documentBuilder.MoveToBookmark("myBookmark", false, true);
var html = File.ReadAllText(insertFileName);
documentBuilder.InsertHtml(html);
document.Save(wordFileName);