我正在使用ExcelDna和NetOffice构建Excel的插件,并从各种来源获取数据并将其插入到工作表中。
我的问题是在工作表中插入数据真的很慢。
将值块插入Excel的最有效方法是什么?
ResultCell[,] result = _currentView.GetResult(values, cursor);
int loopM = result.GetUpperBound(0);
int loopN = result.GetUpperBound(1);
for (int y = 0; y <= loopM; y++)
{
for (int x = 0; x <= loopN; x++)
{
int a = xlCurrentCell.Row + row;
int b = xlCurrentCell.Column + x;
Excel.Range xlCell = (Excel.Range)xlActiveSheet.Cells[a, b];
_SetValue(xlCell, result[y, x]);
}
row++;
}
...
private void _SetValue(Excel.Range xlCell, ResultCell cell)
{
xlCell.ClearFormats();
object value = cell.Value;
if (value is ExcelError)
{
value = ExcelUtils.ToComError((ExcelError) value);
}
else if (ExcelUtils.IsNullOrEmpty(value))
{
value = "";
}
xlCell.Value = value;
if (!string.IsNullOrEmpty(cell.NumberFormat))
{
xlCell.NumberFormat = cell.NumberFormat;
}
}
问题是每个插页都会变成屏幕更新吗?我试过了:
Excel.Application xlApp = new Excel.Application(null, ExcelDna.Integration.ExcelDnaUtil.Application);
xlApp.ScreenUpdating = false;
但这并没有任何效果。
答案 0 :(得分:1)
每个单元格设置数据很慢。您可以将大范围的值设置为值数组,这将非常快。
暂时关闭屏幕更新和重新计算也会有所帮助。
有关详细讨论的详细信息,包括使用Excel-DNA加载项中的C API的代码,请参阅Fastest way to interface between live (unsaved) Excel data and C# objects