如何使用 get_range 方法为特定行和特定范围的列着色 excel 工作表
How to color the excel sheets using get_range method for a particular row and for particular range of columns
我正在尝试使用以下 C# 代码为现有的 excel 文件着色...我能够为一系列列单元格着色,但我需要为该列范围的特定行着色。如何实现?
例如:我需要为列范围 ("AW:AW", "AY:AY")
的第二行着色
excelWorkSheet5.get_Range("AW:AW", "AY:AY").Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Yellow);
你试过添加行索引吗
excelWorkSheet5.get_Range("AW2", "AY2").Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Yellow);
我正在尝试使用以下 C# 代码为现有的 excel 文件着色...我能够为一系列列单元格着色,但我需要为该列范围的特定行着色。如何实现?
例如:我需要为列范围 ("AW:AW", "AY:AY")
的第二行着色excelWorkSheet5.get_Range("AW:AW", "AY:AY").Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Yellow);
你试过添加行索引吗
excelWorkSheet5.get_Range("AW2", "AY2").Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.Yellow);