sheet.copyTo(start + rows,-1,start + m,-1,1,-1,GC.Spread.Sheets.CopyToOptions.all); 执行速度太慢。我copy500好要几十秒钟
// 扩展行,主要为了继承行的样式和公式
extendRow:function(sheet,start,rows){
// 增加行数
sheet.addRows(start, rows);
sheet.isPaintSuspended(true);
sheet.suspendCalcService();
for (var m = 0; m < rows; m++) {
// 辅助扩展行便于模板行继承
sheet.copyTo(start + rows,-1,start + m,-1,1,-1,GC.Spread.Sheets.CopyToOptions.all);
}
sheet.resumeCalcService();
sheet.isPaintSuspended(false);
},
|
|