3

我正在使用开源EPPlus库,它允许您读取 Excel 等电子表格文件。现在,我有一个 Excel 文件,但我想Background Color在获取单元格的值之前检查单元格的值。但是,我不知道该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();
                }

            }

有什么建议么?

4

1 回答 1

3

我得到了我自己问题的答案:-) 我发现它BackgroundColor有一个RGB属性,这就是我用来获取我想要测试的颜色值的东西。这是代码

        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.Rgb == Color.Yellow.A.ToString("X2") + Color.Yellow.R.ToString("X2") + Color.Yellow.G.ToString("X2") + Color.Yellow.B.ToString("X2"))
            {
              String getValue = theCell.Value.ToString();
            }

        }

或者当然我可以使用一个函数来返回 HexValue

   if (theCell.Style.Fill.BackgroundColor.Rgb == ColorHexValue(Color.Yellow))
      {
        String getValue = theCell.Value.ToString();
      }

function返回十六进制值:

   private String ColorHexValue(System.Drawing.Color C)
    {
        return C.A.ToString("X2") + C.R.ToString("X2") + C.G.ToString("X2") + C.B.ToString("X2");
    }
于 2013-05-30T05:47:11.697 回答