我正在尝试生成一个像普通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 );
答案 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 );
那是