2016-01-11 100 views
4

在EPPlus擴展,如果我需要設置樣式爲單元格區域,如A1至C1,我將使用以下Epplus單元格區域數字

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

什麼是相當於此僅使用數字?

+0

不EPPlus使用'欄[]'或'行[]'? – BruceWayne

+0

你嘗試了什麼? – Roland

回答

10

Cells具有過載,這將讓你做[FromRow, FromCol, ToRow, ToCol]這樣的:

ws.Cells[1, 1, 1, 3].Style.Font.Bold = true; 
相關問題