0

有什么方法可以通过 open xml sdk 和 epplus 获取特定单元格的样式?

目前我通过以下方式获得价值:

currentWorksheet.Cells[nRowId, 3].Text.Trim();

除此之外,如果有背景颜色和边框,我想要。

4

1 回答 1

4

尝试

currentWorksheet.Cells[nRowId, 3].Style;

还:

currentWorksheet.Cells[nRowId, 3].Style.Fill.BackgroundColor;
currentWorksheet.Cells[nRowId, 3].Style.Border;
于 2013-02-10T13:36:26.563 回答