Using the pageSetup.SetFooter() function, the parameters are
Hi,
Please see the following sample code for your need.
//Instantiating a Workbook object
Workbook workbook = new Workbook();
workbook.Worksheets[0].Cells[“A1”].PutValue(“Testing…”);
//Obtaining the reference of the PageSetup of the worksheet
PageSetup pageSetup = workbook.Worksheets[0].PageSetup;
//Setting a string at the left section of the footer
pageSetup.SetFooter(0, “&L&UNote:&U Closing dates without a scheduled time are &Uestimates&U based on Purchase Agrm”);
workbook.Save(“e:\test\output.xls”);
Thank you.