SpreadJS Documentation
ungroupRange Method
The group starting index.
The number of rows or columns to remove.
Removes a range of rows or columns from the outline (range group) at the specified start index.
Syntax
var instance = new GcSpread.Sheets.RangeGroup(count);
var value; // Type: any
value = instance.ungroupRange(index, count);
function ungroupRange( 
   index : number,
   count : number
) : any;

Parameters

index
The group starting index.
count
The number of rows or columns to remove.
Example
This example uses the ungroupRange method.
activeSheet.isPaintSuspended(true);
activeSheet.rowRangeGroup.group(0,5);
activeSheet.rowRangeGroup.ungroupRange(0,1);
activeSheet.isPaintSuspended(false);
See Also

Reference

RangeGroup type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.