SpreadJS Documentation
repaint Method
The rectangle to repaint.
Repaints the specified rectangle.
Syntax
var instance = new GcSpread.Sheets.Sheet(name);
var value; // Type: any
value = instance.repaint(clipRect);
function repaint( 
   clipRect : any
) : any;

Parameters

clipRect
The rectangle to repaint.
Example
This example causes a repaint.
var cellrange =new GcSpread.Sheets.Range(0, 0, 5, 1);
var hideRowFilter =new GcSpread.Sheets.HideRowFilter(sheet,cellrange);
sheet.rowFilter(hideRowFilter);
sheet.isPaintSuspended(false);
sheet.repaint();
See Also

Reference

Sheet type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.