Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读 excel 表以及导出读取的 excel。我想将填充(背景颜色)颜色设置为导出的 excel 表的标题行。我正在使用 C# +asp.net。
这样的事情可能会有所帮助。更改其他参数以获得所需的结果。
Microsoft.Office.Tools.Excel.Worksheet.Range["A1","B1"].Interior.Color = Excel.XlRgbColor.rgbDarkBlue;
“A”和“B”代表你的范围。
希望能帮助到你。