2金币
最佳答案您好,
1、写入数值时请使用setValue接口而不是setText接口。
2、批量写入数值时请关闭绘制、事件和计算引擎,待写入完毕再开启。
如:
sheet.suspendPaint();
sheet.suspendCalcService();
sheet.suspendEvent();
sheet.resumeEvent();
sheet.resumeCalcService();
sheet.resumePaint();
更多请参考:https://demo.grapecity.com.cn/spreadjs/help/docs/faqs/performance/performnace-optimize-project2#%E ...
| |
| |
| |
| |
| |