目前我们使用以下代码设置单元格中的颜色
worksheet.Cells[18, 1].Style.Fill.BackgroundColor.SetColor(Constants.highlightingColor);
有没有办法将颜色设置为细胞组?就像我们使用类名在css中设置颜色组中的颜色一样。
答案 0 :(得分:0)
如果您想一次设置一系列单元格,只需使用Cells
对象索引器重载即可。像这样:
worksheet.Cells[18,1,28,11].Style.Fill.BackgroundColor.SetColor(Constants.highlightingColor);
将从第18行第1行的Cell处开始,然后转到第28行第11行的Cell并设置所有背景颜色。