SpreadJS Documentation
ungroup Method
GC.Spread.Sheets.Outlines Namespace > Outline type : ungroup Method
Removes all outlines (range groups).
Syntax
var instance = new GC.Spread.Sheets.Outlines.Outline(count);
var value; // Type: any
value = instance.ungroup();
function ungroup() : any;
Example
This example uses the ungroup method.
activeSheet.suspendPaint();
activeSheet.rowOutlines.group(0,5);
activeSheet.rowOutlines.ungroup();
activeSheet.resumePaint();
See Also

Reference

Outline type