SpreadJS Documentation
getCollapsed Method
The index.
Gets the collapsed internal.
Syntax
var instance = new GcSpread.Sheets.RangeGroup(count);
var value; // Type: boolean
value = instance.getCollapsed(index);
function getCollapsed( 
   index : boolean
) : boolean;

Parameters

index
The index.

Return Value

true if collapsed; otherwise, false.
Example
This example uses the getCollapsed method.
activeSheet.isPaintSuspended(true);
activeSheet.rowRangeGroup.group(0,5);
activeSheet.rowRangeGroup.expand(0,true);
activeSheet.isPaintSuspended(false);
alert(activeSheet.rowRangeGroup.getCollapsed(0));
See Also

Reference

RangeGroup type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.