NPOI将字体应用于整行单元格

时间:2014-10-24 15:10:44

标签: c# excel npoi

我正在使用NPOI将我的数据导出到excel。问题是我发现任何类型的图形更改都很难。

这是我现在用来将粗体字体应用于我的单元格的方法。

//Create new Excel workbook
        var workbook = new HSSFWorkbook();

        //Create new Excel sheet
        var sheet = workbook.CreateSheet();

        //Create a header row
        var headerRow = sheet.CreateRow(0);

        var boldFont = workbook.CreateFont();
        boldFont.FontHeightInPoints = 11;
        boldFont.FontName = "Calibri";
        boldFont.Boldweight = (short)NPOI.SS.UserModel.FontBoldWeight.Bold;

        int cellCounter = 0;

        //day
        var cell = headerRow.CreateCell(cellCounter++);
        cell.SetCellValue("Day");
        cell.CellStyle = workbook.CreateCellStyle();
        cell.CellStyle.SetFont(boldFont);
        //month
        cell = headerRow.CreateCell(cellCounter++);
        cell.SetCellValue("Month");
        cell.CellStyle = workbook.CreateCellStyle();
        cell.CellStyle.SetFont(boldFont);
        //year
        cell = headerRow.CreateCell(cellCounter++);
        cell.SetCellValue("Year");
        cell.CellStyle = workbook.CreateCellStyle();
        cell.CellStyle.SetFont(boldFont);
        //machine name
        cell = headerRow.CreateCell(cellCounter++);
        cell.SetCellValue("Machine unique name");
        cell.CellStyle = workbook.CreateCellStyle();
        cell.CellStyle.SetFont(boldFont); //and so on

有没有更清晰的“方法呢?现在我必须手动为单个单元格添加字体。我已经尝试了很多方法在互联网上执行此操作,似乎没有任何工作。你有测试吗?将样式应用于特定列或行的方法?

OffTopic:如果没有,你可以为我提供一些优秀的开源库,其中有适当的文档和支持,允许excel导出(学习新的dll是一个痛苦,但是...... :)你能做什么?

1 个答案:

答案 0 :(得分:0)

我正在做类似的事情并修改了我对它的接近使用:

private string[] columnHeaders =
{
    "Day",
    "Month",
    "Year",
    "Machine Unique Name"
}

    private void buildSheet(HSSFWorkbook wb, DataTable data, string sheetName)
    {
        var cHelp = wb.GetCreationHelper();
        var sheet = wb.CreateSheet(sheetName);

        HSSFFont hFont = (HSSFFont)wb.CreateFont();

        hFont.FontHeightInPoints = 11;
        hFont.FontName = "Calibri";
        hFont.Boldweight = (short)NPOI.SS.UserModel.FontBoldWeight.Bold;

        HSSFCellStyle hStyle = (HSSFCellStyle)wb.CreateCellStyle();
        hStyle.SetFont(hFont);

        IRow headerRow = sheet.CreateRow(1);

        int cellCount = 1;
        foreach (string str in columnHeaders)
        {
            HSSFCell cell = (HSSFCell)headerRow.CreateCell(cellCount);
            cell.SetCellValue(cHelp.CreateRichTextString((str)));
            cell.CellStyle = hStyle;

            cellCount += 1;
        }

这会迭代你想从第二个单元格(cellCount = 1)第二行(sheet.CreateRow(1))开始的多个标题。