Aspose.Cells 设置背景颜色

Posted 晨风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Aspose.Cells 设置背景颜色相关的知识,希望对你有一定的参考价值。

 很多小伙伴设置背景颜色都不起作用,特别提醒需要加入下面一行:

style.Pattern = BackgroundType.Solid;
Aspose.Cells.Style style = null;
int index = workbook.Styles.Add();
style = workbook.Styles[index];
//文本颜色
style.Font.Color = Color.Red;
style.Font.Size = 10;
//设置背景颜色
style.ForegroundColor = System.Drawing.Color.Silver;
style.Pattern = BackgroundType.Solid;
style.Font.IsBold = true;
style.HorizontalAlignment = Aspose.Cells.TextAlignmentType.Center;
style.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin; //应用边界线 左边界线 
style.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin; //应用边界线 右边界线 
style.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin; //应用边界线 上边界线 
style.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin; //应用边界线 下边界线
Aspose.Cells.Range w = cells.CreateRange(row, col, 1, 1);
w.ApplyStyle(style, new StyleFlag() { All=true});

 

以上是关于Aspose.Cells 设置背景颜色的主要内容,如果未能解决你的问题,请参考以下文章

有用aspose.words的吗,请教单元格内容怎么水平居中

Aspose.Cells设置单元格背景色

Aspose.Cells设置单元格背景色

C# Aspose.Cells 将数据设置为具有格式的 Excel 文件

为啥设置为左对齐的单元格内容有时会右对齐(Aspose Cells)?

c# Aspose cells怎么设置单元格格式为日期格式