Hi,
I’m trying to convert a docx document that has a table with the ‘Repeat Header Rows’ option. Unfortunately, the PDF that I get out of the conversion doesn’t have table’s header rows on each page like the original docx file.
Is there any way to fix it?
I attached the input and output file.
I’m using Aspose for .NET 22.5. Java version has the same issue. The code is quite simple:
var docx = "...";
var pdf = "";
Document doc = new Document(docx);
// Save the document in PDF format.
doc.Save(pdf);
sample.zip (73.5 KB)