这就是发生的事情:
xlValues
被设置为Excel.Range
对象。
我也尝试了以下方法,都给了我同样的错误:
//xlValueRange = xlSheet...
.get_Range("A1:A5,A15:A25,A50:A65");
.UsedRange.Range["A1:A5,A15:A25,A50:A65"];
.Range["A1:A5,A15:A25,A50:A65"];
xlApp.ActiveWorkbook.ActiveSheet.Range["A1:A5,A15:A25,A50:A65"];
//I have also tried these alternatives with ".Select()" after the brackets and
//", Type.Missing" inside the brackets
//This works though...
xlSheet.Range["A1:A5"];
我正在尝试为 Excel 工作表中的特定单元格重新着色,我通过使用两个循环找到了解决方案,但这太慢了。运行一列 30 000 个单元格需要几分钟。
我以前从来没有做过这样的事情,我用这个教程让我开始。
此解决方案使用 bool 数组,其中单元格的颜色设置为 true。(recolored)
//using Excel = Microsoft.Office.Interop.Excel;
xlApp = new Excel.Application();
xlApp.Visible = true;
xlBook = xlApp.Workbooks.Add(Type.Missing);
xlSheet = (Excel.Worksheet)xlBook.Sheets[1];
for (int i = 1; i < columns + 1; i++)
{
for (int j = 1; j < rows + 1; j++)
{
if (recolored[j, i])
xlSheet.Cells[j+1, i+1].Interior.Color = Excel.XlRgbColor.rgbRed;
}
}
}
我想做的是这样的:
Excel.XlRgbColor[,] color;
//Loop to fill color with Excel.XlRgbColor.rgbRed at desired cells.
var startCell = (Excel.Range)xlSheet.Cells[1, 1];
var endCell = (Excel.Range)xlSheet.Cells[rows, columns];
var xlRange = xlSheet.Range[startCell, endCell];
xlRange.Interior.Color = color;
不过,这在最后一行给了我一个错误;
Type mismatch. (Exception from HRESULT: 0x80020005 (DISP_E_TYPEMISMATCH))
我的第一个猜测是制作一个Excel.Range
覆盖我想要红色的单元格的对象,并使用该对象代替 xlRange,如下所示:
RangeObject.Interior.Color = Excel.XlRgbColor.rgbRed;
我不知道是否有可能制作一个Excel.Range
有这样间隙的对象,我可以在这个上使用一些帮助。