标签: c# excel epplus
在EPPlus扩展中,如果我需要为一系列单元格设置样式,例如A1到C1,我将使用以下
ws.Cells["A1:C1"].Style.Font.Bold = true;
仅使用数字的等价物是什么?
答案 0 :(得分:18)
Cells有一个重载,可以让你像这样[FromRow, FromCol, ToRow, ToCol]:
Cells
[FromRow, FromCol, ToRow, ToCol]
ws.Cells[1, 1, 1, 3].Style.Font.Bold = true;