NPOI自定义单元格RGB背景色

cell.CellStyle.FillPattern = FillPattern.SolidForeground;
  byte r = (byte)226;
  byte g = (byte)239;
  byte b = (byte)218;
  if (workbook is XSSFWorkbook)
  {
      cell.CellStyle.FillForegroundColor = 0;
      ((XSSFColor)cell.CellStyle.FillForegroundColorColor).SetRgb(new byte[] { r, g, b });
  }
  else
  {
      cell.CellStyle.FillForegroundColor = (((HSSFWorkbook)workbook).GetCustomPalette().FindSimilarColor(r, g, b)).Indexed;
  }
上一篇:alibaba——研发/算法笔试题2


下一篇:如何巧妙的使用pandas结合xlsxwriter实现对表格的读写以及插入图片操作