@Srinithin Thank you for additional information.
- The problem is not reproducible on my side. Code for testing:
Document doc = new Document(@"C:\Temp\fontissuesinfooterline.docx");
// Execute mail merge with dummy data.
doc.MailMerge.Execute(new string[] { "LoanNbr", "Borrower1POA", "Borrower2POA", "Borrower3POA", "Borrower4POA" }, new string[] { "LoanNbr", "Borrower1POA", "Borrower2POA", "Borrower3POA", "Borrower4POA" });
doc.Save(@"C:\Temp\fontissuesinfooterline_out.docx");
Here is the produced output: fontissuesinfooterline_out.docx (12.2 KB)
- The problem is not reproducible on my side. Code for testing:
Document doc = new Document(@"C:\Temp\footerfontsizeincrease.docx");
// Execute mail merge with dummy data.
string[] names = new string[] { "LoanNbr", "BorrowerString", "PropertyStreet", "PropertyCity", "PropertyState", "PropertyZip", "BorrowerString", "LenderName", "TotalModBalance", "Borrower1POA", "Borrower2POA", "Borrower3POA", "Borrower4POA" };
doc.MailMerge.Execute(names, names);
doc.Save(@"C:\Temp\footerfontsizeincrease_out.docx");
Here is the produced output: footerfontsizeincrease_out.docx (17.9 KB)
- The problem is not reproducible on my side. Code for testing:
Document doc = new Document(@"C:\Temp\unexpectedfooteraddition1.docx");
// Execute mail merge with dummy data.
string[] names = new string[] { "DocMonth", "DocDay", "DocYear", "BorrowerString", "BorrowerStreet", "BorrowerCity", "BorrowerState", "BorrowerZip", "LoanNbr", "PropertyStreet", "PropertyCity", "PropertyState", "PropertyZip", "BorrowerString", "BorrowerContribution" };
doc.MailMerge.Execute(names, names);
doc.Save(@"C:\Temp\unexpectedfooteraddition1_out.docx");
Here is the produced output: unexpectedfooteraddition1_out.docx (16.0 KB)
- The problem is not reproducible on my side. Code for testing:
Document doc = new Document(@"C:\Temp\unexpectedfooteraddition.docx");
// Execute mail merge with dummy data.
string[] names = new string[] { "LoanNbr" };
doc.MailMerge.Execute(names, names);
doc.Save(@"C:\Temp\unexpectedfooteraddition_out.docx");
Here is the produced output: unexpectedfooteraddition_out.docx (10.7 KB)