Aspose.Cells设置单元格背景色

Posted 棉晗榜

tags:

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

Aspose.Cells.Style rowBg2 = wb.Styles[wb.Styles.Add()];
rowBg2.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin;
rowBg2.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin;
rowBg2.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin;
rowBg2.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin;           
rowBg2.ForegroundColor = System.Drawing.Color.SpringGreen;                   
rowBg2.Pattern = BackgroundType.Solid;.

Aspose.Cells.Range range1 = cells.CreateRange(0, 0, 1, 11);
range1.ApplyStyle(rowBg2, new StyleFlag()  All = true );

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

如何设置Aspose.Cells单元格属性

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

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

Aspose.Cells 首次使用,用到模版填充数据,合并单元格,换行

Aspose.Cells 设置背景颜色

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