Row column as header?

How is it possible to make a title row containing column names for a data table as a header so that the names of the columns repeat on each page?

the only way I was able to do this was

Dim columnhead As New Aspose.Pdf.Text(" Date [8 tabs] Column2name [8 tabs] Column3 Name")

headerfooter.paragraphs.add(columnhead)
THE ISSUE I HAVE IS , that I need the column names EACH to be underlined like so

Date column2name column3name


How can one do this?
please advise



Have you tried setting the Table’s IsFirstRowRepeated property?

wish I had known about this property before i changed my rows to headers!
this worked great! thank you!