4
在EPPlus擴展,如果我需要設置樣式爲單元格區域,如A1至C1,我將使用以下Epplus單元格區域數字
ws.Cells["A1:C1"].Style.Font.Bold = true;
什麼是相當於此僅使用數字?
在EPPlus擴展,如果我需要設置樣式爲單元格區域,如A1至C1,我將使用以下Epplus單元格區域數字
ws.Cells["A1:C1"].Style.Font.Bold = true;
什麼是相當於此僅使用數字?
Cells
具有過載,這將讓你做[FromRow, FromCol, ToRow, ToCol]
這樣的:
ws.Cells[1, 1, 1, 3].Style.Font.Bold = true;
不EPPlus使用'欄[]'或'行[]'? – BruceWayne
你嘗試了什麼? – Roland