Das Problem:
Ich benutze EEPlus.
Ich kann keinen Hex-Farbcode anwenden, z. B. #B7DEE8
für eine Zelle in meiner Excel-Tabelle.
Ich habe den folgenden (Arbeits-) Code erhalten:
ws.Cells["A1:B1"].Style.Fill.PatternType = ExcelFillStyle.Solid;
ws.Cells["A1:B1"].Style.Fill.BackgroundColor.SetColor(Color.Gray);
Aber ich brauche so etwas wie das Folgende:
ws.Cells["A1:B1"].Style.Fill.BackgroundColor.SetColor("#B7DEE8");
Meine Frage ist also: Ist es möglich, Hex-Farbcodes mit EEPlus zu verwenden? Wenn ja, wie kann ich das machen?