使用Epplus获得excel cell的风格

时间:2013-02-07 09:22:28

标签: c# excel openxml-sdk epplus

有没有办法通过打开xml sdk和epplus来获取特定单元格的样式?

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

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

如果有背景颜色和边框,我想要这样做。

1 个答案:

答案 0 :(得分:4)

尝试

currentWorksheet.Cells[nRowId, 3].Style;

此外:

currentWorksheet.Cells[nRowId, 3].Style.Fill.BackgroundColor;
currentWorksheet.Cells[nRowId, 3].Style.Border;