I used below code to create content of header:
doc = new Aspose.Words.Document();
builder = new DocumentBuilder(doc);
builder.MoveToHeaderFooter(HeaderFooterType.HeaderPrimary);
string hContent = “
header text |
After saving to file, I cannot see the text in header. But if I set the border of table to ‘1’, everything in header is good.
Could you please help me to show text in header if the table doesn’t has border like above code?
Thanks