SpreadJS Documentation
suspendPaint Method
GC.Spread.Sheets Namespace > Workbook type : suspendPaint Method
Suspends the paint of active sheet and tab strip.
Syntax
var instance = new GC.Spread.Sheets.Workbook(host);
var value; // Type: any
value = instance.suspendPaint();
function suspendPaint() : any;
Example
This example uses the suspendPaint method.
spread.suspendPaint();
for(var i=0;i<100;i++){
activeSheet.setValue(i,0,"Row"+i);
}
spread.resumePaint();
See Also

Reference

Workbook type