Repeated table header row is not displayed after conversion to PDF

Hello, I’m using Aspose to convert Word documents to PDF in a dotnet 6 application.
I noticed that when I convert a docx document including tables that use the “Repeat Header Rows” feature (in table layout tools), the repeated header rows are not displayed in the converted PDF. Do you have any idea of what causes this and how to fix it ?
Kind regards,
Julien

@JulienFaugier Could you please attach your input and output documents here for testing? We will check the issue and provide you more information.

Thanks for your quick answer :slight_smile:
Please find attached a docx document and its PDF conversion showing the issue.
RepeatHeaderRows2.docx (17.0 KB)
RepeatHeaderRows2.pdf (36.5 KB)

@JulienFaugier Thank you for additional information. The problem is not reproducible using the latest 24.3 version of Aspose.Words. Here is the output produced on my side using the following simple code:

Document doc = new Document(@"C:\Temp\in.docx");
doc.Save(@"C:\Temp\out.pdf");

out.pdf (36.6 KB)

Please try using the latest version of Aspose.Words and let us know if the problem still persists on your side.

@alexey.noskov upgrading Aspose.Words version to 24.3 fixed the issue, thanks !

1 Like