Spread.Sheets 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 GC.Spread.Sheets.Outlines.Outline(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.suspendPaint();
activeSheet.rowOutlines.group(0,5);
activeSheet.rowOutlines.ungroupRange(0,1);
activeSheet.resumePaint();
See Also

Reference

Outline type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.