[]
Gets whether the current group is collapsed.
bool IsCollapsed { get; }
ReadOnly Property IsCollapsed As Boolean
worksheet.Range["2:5"].Group();
IGroupInfo group = worksheet.Outline.RowGroupInfo[0];
group.Collapse();
bool isCollapsed = group.IsCollapsed;