我需要在工作簿中新创建的工作表中添加一个模块。
它的CodeModule属性为null。
如何创建这种类型的模块?
using (var wb = new ExcelPackage(new FileInfo(fileName)))
{
string _worksheetShiftReport = "Sheet1";
var shiftRepSheet = wb.Workbook.Worksheets[_worksheetShiftReport];
//this code creates standard module in the VB project
//but I need worksheet's module, not standard
var module = wb.VbaProject.Modules.AddModule(_worksheetShiftReport);
module.Code = "Option Explicit";
}