0

I am using the EPPlus to create an excel file. Now I want to remove the Related People (Author and Modified By) property of the Excel file.

How can I do this?

Viveka
  • 340
  • 2
  • 14

1 Answers1

1

Answering my own question, this can be done by adding the Workbook.Properties.LastModefiedBy and Workbook.Properties.Author to the ExcelPackage as below:

//Get file info of temp excel file
FileInfo newFile = new FileInfo(@"your-docx-file-path");
//Create ExcelPackage for excel file
ExcelPackage pck = new ExcelPackage(newFile);

pck.Workbook.Properties.LastModifiedBy = string.Empty;
pck.Workbook.Properties.Author = string.Empty;
Viveka
  • 340
  • 2
  • 14