EPPlus
Excel などのスプレッドシート ファイルを読み取ることができるオープン ソースライブラリを使用しています。Background Color
今、私は Excel ファイルを持っていますが、セルの値を取得する前にセルをチェックしたいと思います。しかし、私は何enum
を使うべきかわかりません。以下は私のコード例です:
using (var package = new ExcelPackage(excelFile))
{
ExcelWorkbook workbook = package.Workbook;
ExcelWorksheet currentWorksheet = workbook.Worksheets.First();
ExcelRange theCell = currentWorksheet.Cells[8, 1];
if (theCell.Style.Fill.BackgroundColor == whatShouldBeTheEnumHere)
{
String getValue = theCell.Value.ToString();
}
}
助言がありますか?