EPPLUS连续下移

时间:2016-12-07 16:56:40

标签: c# excel office-interop excel-interop epplus

我正在从 Microsoft.Office.Interop.Excel 库迁移项目到 c#中的EPPlus以及我想要的内容' s使用 EEplus 库获得相应的代码。

我使用模板XLSX文件包含7行和依赖行数据我希望插入一个具有相同样式的新行。

if (MyData.Tables[0].Rows.Count>3) 
            {
                for (int j=1;j<MyData.Tables[0].Rows.Count-3;j++)
                {
                    for (int i1=1;i1<29;i1++)
                    {
                        EXCEL.Range TheRange = (EXCEL.Range) ws.Cells[7,i1];
                        TheRange.Insert(EXCEL.XlInsertShiftDirection.xlShiftDown,missing);

                    }
                }
            }

view xlsx template 和结果 Epplus without shiftdown

0 个答案:

没有答案