EPPlus:将样式复制到一个区域

8

我希望能够在工作表中插入x行/列,并应用从中插入的行/列的样式(背景颜色/边框等)。

以下是如何添加新行:

xlsSheet.InsertRow(18, RowCount);

然后我想将“基础”行的样式复制/应用到新插入的行中:

for (int i = 0; i < RowCount; i++)
{
    xlsSheet.Cells[16, 1, 16, xlsSheet.Dimension.End.Column].Copy(xlsSheet.Cells[16 + i + 1, 1]);
}

但这段代码没有复制/应用“基础”行的样式。目前我有一种与Interop的解决方法,但与Epplus相比需要花费数年时间。 :-/
3个回答

6
在4.0.4代码中:
if (copyStylesFromRow > 0)
{
    var cseS = new CellsStoreEnumerator<int>(_styles, copyStylesFromRow, 0, copyStylesFromRow, ExcelPackage.MaxColumns); //Fixes issue 15068 , 15090
    while(cseS.Next())
    {
        for (var r = 0; r < rows; r++)
        {
            _styles.SetValue(rowFrom + r, cseS.Column, cseS.Value);
        }
    }
}

它使用copyStylesFromRow的值,但由于代码序列的缘故,它使用新的行号。因此,如果您想在第3行开始插入4行:

workbook.Worksheets[1].InsertRow(3,4,6); 

这将在第3行开始插入4行新行,因为第3行已经被包含进去了,所以你需要指向第6行。这是一个错误,但你可以进行调整。


https://github.com/EPPlusSoftware/EPPlus/issues/392 - Sean Feldman

4

我认为他们在第四个版本中破坏了复制函数的那部分。看这个:

http://epplus.codeplex.com/workitem/15068

所以,在复制后可以手动设置样式ID:
[TestMethod]
public void Copy_Styles_Test()
{
    //https://dev59.com/LY3da4cB1Zd3GeqP489V

    //Throw in some data
    var datatable = new DataTable("tblData");
    datatable.Columns.AddRange(new[] {new DataColumn("Col1", typeof (int)), new DataColumn("Col2", typeof (int)), new DataColumn("Col3", typeof (int)) });

    for (var i = 0; i < 20; i++)
    {
        var row = datatable.NewRow();
        row[0] = i; row[1] = i * 10; row[2] = i * 100; 
        datatable.Rows.Add(row);
    }

    var existingFile = new FileInfo(@"c:\temp\test.xlsx");
    if (existingFile.Exists)
        existingFile.Delete();

    using (var pck = new ExcelPackage(existingFile))
    {
        const int rowCount = 5;
        const int startRow = 18;

        //Show the data
        var xlsSheet = pck.Workbook.Worksheets.Add("Sheet1");
        xlsSheet.Cells.LoadFromDataTable(datatable, true);

        //Throw in some styles for testing
        xlsSheet.Row(startRow).Style.Fill.PatternType = ExcelFillStyle.Solid;
        xlsSheet.Row(startRow).Style.Fill.BackgroundColor.SetColor(Color.Aqua);
        xlsSheet.Cells[String.Format("A{0}:C{0}", startRow)].Style.Fill.BackgroundColor.SetColor(Color.Red);

        //Insert new rows
        xlsSheet.InsertRow(startRow, rowCount);

        //Copy the cells and manually set the style IDs
        var copyrow = startRow + rowCount;
        for (var i = 0; i < rowCount; i++)
        {
            var row = startRow + i;
            xlsSheet.Cells[String.Format("{0}:{0}", copyrow)].Copy(xlsSheet.Cells[String.Format("{0}:{0}", row)]);
            xlsSheet.Row(row).StyleID = xlsSheet.Row(copyrow).StyleID;
        }

        //May not be needed but cant hurt
        xlsSheet.Cells.Worksheet.Workbook.Styles.UpdateXml();

        //save it
        pck.Save();
    }
}

2
你应该这样定义一个工作表:

你应该像这样定义一个工作表:

   string sheetName="Your Sheet Name";
   ExcelWorksheet ws = pck.Workbook.Worksheets.Add(sheetName);

然后,您可以使用以下代码来更改整个工作表的样式:
      Color colFromHex = System.Drawing.ColorTranslator.FromHtml("#B8C9E9");
      ws.Cells.Style.Fill.PatternType = ExcelFillStyle.Solid;
      ws.Cells.Style.Fill.BackgroundColor.SetColor(colFromHex);
      ws.Cells.Style.Border.Top.Style = ExcelBorderStyle.Medium;
      // . . . . .

使用以下代码来改变范围的样式:

       Color colFromHex = System.Drawing.ColorTranslator.FromHtml("#B8C9E9");
       ws.Cells["A1:H16"].Style.Fill.PatternType = ExcelFillStyle.Solid;
       ws.Cells["A1:H16"].Style.Fill.BackgroundColor.SetColor(colFromHex);
       ws.Cells["A1:H16"].Style.Border.Top.Style = ExcelBorderStyle.Medium;

这些区域有5-6种不同的颜色和单元格样式,所以我想从这些区域应用样式。 - kassi

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接