Welcome to the ASP.NET Core feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET Core, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

We create a Word document from several docs. we are finding that the footer of the previous document is getting inserted in the next document if it does not have one. We are not setting the section.HeadersFooters.LinkToPrevious. We even tried

 

foreach( WSection section in sourceDocument.Sections)

  {

      section.HeadersFooters.LinkToPrevious = false;

   }


destinationDocument
.ImportContent(
sourceDocument, false);


Do we need to loop though the sections in the destination document after combining the documents 


foreach( WSection section in destinationDocument.Sections)

 {

         section.HeadersFooters.LinkToPrevious = false;

 }


I have attached code that demonstrates the problem. The destination document has footers the source does not. When adding the source to the destination, footers are an all pages not just the first three pages.