SpreadJS Documentation
GroupState Enumeration
Specifies the status of an outline (range group).
Members
MemberDescription
Collapsed[1] Indicates collapsed status with the plus sign.
Expanded[0] Indicates expanded status with the minus sign.
Example
The following example specifies to display a range group as collapsed.
sheet.rowRangeGroup.group(0,5);
var rgi = sheet.rowRangeGroup.find(1, 0);
rgi.setState(GcSpread.Sheets.GroupState.Collapsed);
sheet.repaint();
Inheritance Hierarchy

Object
   GcSpread.Sheets.GroupState

See Also

Reference

GcSpread.Sheets Namespace

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.