遍历所有行,所有列。- let rowCount = sheet.getRowCount();
- let colCount = sheet.getColumnCount();
- for(let i = 0;i<rowCount;i++){
- sheet.setRowHeight(i,200)
- }for(let j = 0;j<colCount;j++){
- sheet.setRowHeight(j,50)
- }
复制代码当数据量较大时,建议使用 suspendPaint 方法和 resumePaint 方法。 进行修改时,suspendPaint方法允许用户停止重新绘制过程。 整合所有变更后,用户可以调用resumePaint方法。 这两种方法都提高了整体性能,因为在完成所有变更之后,Spread现在仅绘制一次。 |