c# – excel细胞着色

前端之家收集整理的这篇文章主要介绍了c# – excel细胞着色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用c#来打印excel文件的特定单元格.
我在用
Application excel = new Application();
Workbook wb = excel.Workbooks.Open(destPath);
 Worksheet ws = wb.Worksheets[1];
 ws.get_Range(ws.Cells[row,clmn]).Cells.Interior.Color = 36;

彩色细胞.但是这不工作..
谁能帮我吗..

解决方法

尝试这样的东西
ws.Cells[row,clmn].Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Red)
原文链接:https://www.f2er.com/csharp/95460.html

猜你在找的C#相关文章