@dspector1,
Regarding WORDSNET-20126, we have completed the work on your issue and concluded that we would not be able to implement the fix of this issue. Your issue (WORDSNET-20126) has now been closed with ‘Won’t Fix’ resolution. Please see the following analysis details.
Even if MS Word generates mail merge output document with next page
, odd page
or even page
breaks, we believe, Aspose.Words should not follow this behavior. Current Aspose.Words Mail Merge behavior is more flexible and allows customers to control output section breaks either with code or via template document and it allows customers to control output section breaks.
In particular, you may use the following code snippet:
switch (doc.FirstSection.PageSetup.SectionStart)
{
case SectionStart.Continuous:
case SectionStart.NewColumn:
doc.FirstSection.PageSetup.SectionStart = SectionStart.NewPage;
break;
}
Also, changing the current behavior will break backward compatibility for many of our other users.