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 に答える