Epplus单元格数值范围
本文关键字:范围 单元格 Epplus | 更新日期: 2023-09-27 18:30:03
在EPPlus扩展中,如果我需要为一系列单元格(如A1到C1)设置样式,我将使用以下
ws.Cells["A1:C1"].Style.Font.Bold = true;
仅使用数字的等价物是什么?
Cells
有一个过载,可以让您像这样执行[FromRow, FromCol, ToRow, ToCol]
:
ws.Cells[1, 1, 1, 3].Style.Font.Bold = true;