无法设置填充背景颜色

本文关键字:背景 颜色 填充 设置 | 更新日期: 2023-09-27 18:33:26

我在一个C#项目中使用NPOI 2.0.6.0,但在更改样式时遇到困难。虽然我可以影响字体和单元格边框,但我无法更改背景颜色。

private void buildSheet(HSSFWorkbook wb, DataTable data, string sheetName)
{
    var cHelp = wb.GetCreationHelper();
    var sheet = wb.CreateSheet(sheetName);
    HSSFFont hFont = (HSSFFont)wb.CreateFont();
    hFont.Boldweight = (short)FontBoldWeight.Bold;
    hFont.Color = HSSFColor.White.Index;
    hFont.FontHeightInPoints = 18;
    HSSFCellStyle hStyle = (HSSFCellStyle)wb.CreateCellStyle();
    hStyle.SetFont(hFont);
    hStyle.BorderBottom = BorderStyle.Medium;
    hStyle.FillBackgroundColor = HSSFColor.Black.Index;
    IRow headerRow = sheet.CreateRow(1);

    int cellCount = 1;
    foreach (string str in colHeaders)
    {
        HSSFCell cell = (HSSFCell)headerRow.CreateCell(cellCount);
        cell.SetCellValue(cHelp.CreateRichTextString((str)));
        cell.CellStyle = hStyle;
        cellCount += 1;
    }
    int rowCount = 2;
    foreach (DataRow dr in data.Rows)
    {
        var row = sheet.CreateRow(rowCount);
        for (int i = 1; i < data.Columns.Count + 1; i++)
        {
            row.CreateCell(i).SetCellValue(cHelp.CreateRichTextString((dr[i - 1]).ToString()));
        }
        rowCount += 1;
    }
}

附加调试器后,我注意到hStyle.FillBackgroundColor永远不会从0x0040更改,尽管黑色的索引为8。

所以本质上问题是:

  • 为什么HSSFCellStyle.FillBackgroundColor不可修改?

无法设置填充背景颜色

如果不同时指定FillPattern,则无法应用FillBackgroundcolor

        hStyle = (HSSFCellStyle)workBook.CreateCellStyle();
        hStyle.SetFont(xFont);
        hStyle.BorderBottom = BorderStyle.Medium;
        hStyle.FillForegroundColor = IndexedColors.Black.Index;
        hStyle.FillPattern = FillPattern.SolidForeground;