EPPlus Excel文件Fill.PatternType,Fill.PatternColor或Fill.BackgroundColor

时间:2016-08-29 19:11:31

标签: c# excel epplus

我正在尝试生成一个像普通excel文件一样的背景的Excel文件。当我在我的程序中创建我的时,它将背景设置为黑色,你什么也看不见。我不确定我是否设置了错误的属性,但这就是我正在尝试的内容:

sheet.Cells.Style.Fill.PatternType = ExcelFillStyle.Solid;
//sheet.Cells.Style.Fill.BackgroundColor.SetColor( Color.Empty );
sheet.Cells.Style.Fill.PatternColor.SetColor( Color.Transparent );

我要做的就是创建一个没有背景的excel文件,就像手动创建一个空白excel文件一样。有什么想法吗?See This Image as an example

1 个答案:

答案 0 :(得分:0)

你唯一要做的就是:

ws.Cells[range].Style.Fill.PatternType = ExcelFillStyle.None;
//ws.Cells[range].Style.Fill.BackgroundColor.SetColor(System.Drawing.Color.Transparent);

在您自己的代码中:

sheet.Cells.Style.Fill.PatternType = ExcelFillStyle.None;
//sheet.Cells.Style.Fill.BackgroundColor.SetColor( Color.Empty );
//sheet.Cells.Style.Fill.PatternColor.SetColor( Color.Transparent );

那是