Hello Team,
I am using the below html and exporting that to docx and also setting the first row to header type, But i do not see the repeated header in my final word file. Can you please help me in generating the repeated header.
NodeCollection tables = theDoc.GetChildNodes(NodeType.Table, true);
for (int i = 0; i < tables.Count; i++)
{
var table = tables[i] as Table;
if (table.Rows.Count > 5)
{
table.Rows[0].RowFormat.HeadingFormat = true;
}
}
Input html file input.zip (9.2 KB)
input html has headers in
Thanks,
Lalitya