gpt4 book ai didi

c# - excel 细胞着色

转载 作者:可可西里 更新时间:2023-11-01 08:53:52 24 4
gpt4 key购买 nike

我正在使用 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)

关于c# - excel 细胞着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5897062/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com