以数字方式提供细胞范围

时间:2016-01-11 22:19:36

标签: c# excel epplus

在EPPlus扩展中,如果我需要为一系列单元格设置样式,例如A1到C1,我将使用以下

ws.Cells["A1:C1"].Style.Font.Bold = true;

仅使用数字的等价物是什么?

1 个答案:

答案 0 :(得分:18)

Cells有一个重载,可以让你像这样[FromRow, FromCol, ToRow, ToCol]

ws.Cells[1, 1, 1, 3].Style.Font.Bold = true;