给Excel工作表的单元格着色
我想在 C# 中为 Excel 工作表的某些特定单元格着色。但我不明白.. 我使用的代码为:
dsNew.Tables[0].Columns[j].Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.DeepPink);
但这不起作用.. 如何做到这一点.. 请做点什么.. 它给出错误“无法解析符号'内部'”
I want to color some particular cells of excel sheet in c#. but I am not getting it..
I am using the code as:
dsNew.Tables[0].Columns[j].Interior.Color = System.Drawing.ColorTranslator.ToOle(System.Drawing.Color.DeepPink);
but this is not wrking..
how this can be done..
please do something..
it is giving an error "cannot resolve symbol'interior'"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试Range.Interior属性:
其中
work_sheet
是您要更改其单元格的 Excel.Worksheet。row
和column
或要更改的单元格的索引。您的示例可能会返回列索引器的对象。试试这个:
Try the Range.Interior property:
where
work_sheet
is the Excel.Worksheet you wish to change the cells of.row
andcolumn
or the indices of the cells to change.Your example may be returning an object for the column indexer. Try this: