如何在c#代码中对AC到AE之间的列范围进行着色

时间:2016-08-09 22:02:25

标签: c# .net excel visual-studio-2012

我尝试使用C#代码为excelisting excel中的特定范围的单元格着色。

以下是我尝试过的代码,但它会引发异常。让我知道如何继续。

excelWorkSheet4.get_Range("AC", "AE").Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Yellow);

1 个答案:

答案 0 :(得分:2)

我得到了以下代码的答案,以下代码适用于" Z"

之后的任何特定范围
excelWorkSheet4.get_Range("AC:AC", "AE:AE").Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Yellow);