GcSpread.Sheets Namespace > RangeGroup type : isCollapsed Method |
var instance = new GcSpread.Sheets.RangeGroup(count); var value; // Type: boolean value = instance.isCollapsed(index);
function isCollapsed( index : number ) : boolean;
true
if the specified row or column is collapsed; otherwise, false
.activeSheet.isPaintSuspended(true); activeSheet.rowRangeGroup.group(0,5); activeSheet.rowRangeGroup.expand(0,true); activeSheet.isPaintSuspended(false); alert(activeSheet.rowRangeGroup.isCollapsed(0));