Category / Section
Is it possible to repeat the table Header on each page?
Yes, it is possible to repeat the Header on each page by using the IsHeader property. Please refer the below code snippet to do so:
C#
IWTable table = textBody.AddTable();
table.ResetCells(100, 8);
table.Rows(0).IsHeader = true;
VB
Dim table As IWTable = textBody.AddTable()
table.ResetCells(100, 8)
table.Rows(0).IsHeader = True
http://help.syncfusion.com/support/samples/docio.windows/p47042/Inserttable.zip