在我的工作表上的两个地方,我需要具有白色字体和黑色背景的单元格。在一个地方(标题行),它的工作原理;在另一个(日期值),它没有,我没有看到我做的不同会导致这种失败。
以下是正在运行的代码(对于标题行):
CellsFactory cfHeaderRow = new CellsFactory();
Cell headerRowCell;
Style styleHeaderRow;
for (int x = 0; x < drPrices.FieldCount-1; x++)
{
headerRowCell = pricePushSheet.Cells[6, x];
headerRowCell.PutValue(drPrices.GetName(x));
pricePushSheet.Cells.SetColumnWidth(x, 9);
styleHeaderRow = cfHeaderRow.CreateStyle();
styleHeaderRow.HorizontalAlignment = TextAlignmentType.Center;
styleHeaderRow.Font.Color = Color.White;
styleHeaderRow.ForegroundColor = Color.Black;
styleHeaderRow.Pattern = BackgroundType.Solid;
styleHeaderRow.IsTextWrapped = true;
headerRowCell.SetStyle(styleHeaderRow);
}
..这里是不起作用的代码(对于下面屏幕截图中圈出的日期行):
CellsFactory cfDate = new CellsFactory();
Cell dateCell = pricePushSheet.Cells[3, 4];
Style styleDate = cfDate.CreateStyle();
dateCell.PutValue(pricePushSheet.Cells[7, 1]);
StyleFlag flag2 = new StyleFlag();
flag2.NumberFormat = true;
styleDate.Font.IsBold = true;
styleDate.HorizontalAlignment = TextAlignmentType.Center;
styleDate.Font.Color = Color.White;
styleDate.ForegroundColor = Color.Black;
styleDate.Pattern = BackgroundType.Solid;
styleDate.Custom = "mm/dd/yyyy";
dateCell.SetStyle(styleDate, flag2);
所以在非工作代码中看起来不同(可能很重要)的是它使用StyleFlag(因为它需要设置日期格式):
StyleFlag flag2 = new StyleFlag();
flag2.NumberFormat = true;
styleDate.Custom = "mm/dd/yyyy";
...当然,SetStyle将标志作为第二个arg(代码的工作位不需要标记,因为它没有做任何花哨的事情。)
如下所示,相关单元格中没有日期(E4);它从一个不在纸张上的地方抓起它。但事实上,字体是黑色而不是白色,背景(Aspose称为前景)是白色而不是黑色。
那为什么着色不起作用?我需要做什么或改变才能让它在单元格E4中工作?
答案 0 :(得分:1)
我认为您需要启用相关的StyleFlag选项才能对单元格应用正确的格式。请参阅更新的代码段以供参考: 例如 示例代码:
CellsFactory cfDate = new CellsFactory();
Cell dateCell = pricePushSheet.Cells[3, 4];
Style styleDate = cfDate.CreateStyle();
dateCell.PutValue(pricePushSheet.Cells[7, 1]);
styleDate.Font.IsBold = true;
styleDate.HorizontalAlignment = TextAlignmentType.Center;
styleDate.Font.Color = Color.White;
styleDate.ForegroundColor = Color.Black;
styleDate.Pattern = BackgroundType.Solid;
styleDate.Custom = "mm/dd/yyyy";
StyleFlag flag2 = new StyleFlag();
flag2.NumberFormat = true;
flag2.CellShading = true;
flag2.HorizontalAlignment = true;
flag2.FontColor = true;
flag2.FontBold = true;
dateCell.SetStyle(styleDate, flag2);
我是Aspose的支持开发人员/传播者。
答案 1 :(得分:1)
请注意,由于您希望将单元格着色以及字体颜色应用于相关单元格,因此您需要将相应的StyleFlag属性设置为true,以便上述样式方面可以生效。请检查以下产生预期结果的代码。
var workbook = new Workbook(dir + "book1.xlsx");
var pricePushSheet = workbook.Worksheets[0];
var cfDate = new CellsFactory();
var dateCell = pricePushSheet.Cells[3, 4];
var styleDate = cfDate.CreateStyle();
dateCell.PutValue(pricePushSheet.Cells[7, 1].Value);
var flag2 = new StyleFlag();
flag2.NumberFormat = true;
flag2.CellShading = true;
flag2.Font = true;
styleDate.Font.IsBold = true;
styleDate.HorizontalAlignment = TextAlignmentType.Center;
styleDate.Font.Color = Color.White;
styleDate.ForegroundColor = Color.Black;
styleDate.Pattern = Aspose.Cells.BackgroundType.Solid;
styleDate.Custom = "mm/dd/yyyy";
dateCell.SetStyle(styleDate, flag2);
注意:我在Aspose担任开发人员传播者。