使用C#在Excel中更改单元格颜色

我正在使用Windows应用程序将数据表导出到Excel。工作正常 现在,我想为单元格中的特定文本提供一些颜色。我该怎么办?

回答:

对于文字:

[RangeObject].Font.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red);

对于细胞背景

[RangeObject].Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red);

以上是 使用C#在Excel中更改单元格颜色 的全部内容, 来源链接: utcz.com/qa/408093.html

回到顶部