# GC.Spread.Sheets.Outlines.OutlineState

## Content

# Enumeration: OutlineState

[Sheets](../modules/GC.Spread.Sheets).[Outlines](../modules/GC.Spread.Sheets.Outlines).OutlineState

Specifies the status of an outline (range group).

**`example`**
```javascript
//The following example specifies to display a range group as collapsed.
sheet.rowOutlines.group(0,5);
var rgi = sheet.rowOutlines.find(1, 0);
rgi.state(GC.Spread.Sheets.Outlines.OutlineState.collapsed);
spread.invalidateLayout();
spread.repaint();
```

## Table of contents

### Enumeration members

- [collapsed](GC.Spread.Sheets.Outlines.OutlineState#collapsed)
- [expanded](GC.Spread.Sheets.Outlines.OutlineState#expanded)

## Enumeration members

### <a id="collapsed" name="collapsed"></a> collapsed

• **collapsed** = `1`

Indicates collapsed status with the plus sign.

___

### <a id="expanded" name="expanded"></a> expanded

• **expanded** = `0`

Indicates expanded status with the minus sign.
