EPPlus-如何添加工作表的模块(类型为eModuleType.Document)

时间:2018-08-10 11:25:27

标签: module epplus worksheet

我需要在工作簿中新创建的工作表中添加一个模块。

它的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";
}

0 个答案:

没有答案