HSSFWorkbook book = new HSSFWorkbook();
ISheet s1 = book.CreateSheet("Gas领料单");
IRow r1 = s1.CreateRow(0);
HSSFCellStyle CellStyle_Title = (HSSFCellStyle)book.CreateCellStyle();
CellStyle_Title.FillForegroundColor = NPOI.HSSF.Util.HSSFColor.LightBlue.Index;//背景色设置,背景色只能用前景色FillForegroundColor属性来操作
CellStyle_Title.FillPattern = FillPattern.SolidForeground;//不能删除,删除则背景色设置无效
r1.GetCell(0).CellStyle = CellStyle_Title;//第0列设置背景样式
- 本文标题: NETCORE之NPOI设置单元格背景色
- 文章分类:【.NET/Web】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.