如何在C#中将Excel.Range.Interior.Color转换为System.Drawing.Color?

前端之家收集整理的这篇文章主要介绍了如何在C#中将Excel.Range.Interior.Color转换为System.Drawing.Color?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一张excel表,其中一些单元格有一些背景颜色.我需要在 HTML代码中使用这种颜色,因此我想将Excel.Range.Interior.Color转换为RGB格式或System.Drawing.Color.

在这之后,我将使用System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color)来获取要在html标签中使用的颜色.

我尝试过以下方法

Excel.Range r = (Excel.Range)m_objRange[2,2];
System.ComponentModel.TypeConverter converter = System.ComponentModel.TypeDescriptor.GetConverter(r.Interior.Color);
               MessageBox.Show(""+converter.ConvertTo(r.Interior.Color,typeof(System.Drawing.Color)));

但我得到一个错误,我无法将System.Double转换为System.Drawing.Color

解决方法

Excel.Range.Interior.Color返回的值是颜色的长整数值.

例子:

‘#000000等于0

‘#FFFFFF等于16777215

您需要将十进制值转换为十六进制.从那里,很容易转换为RGB. (分组为2个八位字节,并转换回十进制):)

原文链接:/csharp/97473.html

猜你在找的C#相关文章