Hello,
I'm working with WTable in a WordDocument object and I'm trying to add some blank space after the table (so the next content is not sticked to the table bottom border), but the only way I found is to add an extra empty paragraph to the section where the WTable is (after the table) in this way:
{
var section = document.LastSection;
RenderTable(document, section); //Render the table to this section
section.AddParagraph();//Add some space after the table
}
I cannot understand how to add margin without using a new paragraph... is there a way to achieve it?
Thank you.