# GC.Spread.Sheets.Outlines.OutlineDirection

## Content

# Enumeration: OutlineDirection

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

Specifies the status of an outline (range group) summary row or column position.

**`example`**
```javascript
sheet.suspendPaint();
sheet.rowOutlines.group(3,2);
sheet.columnOutlines.group(4,1);
sheet.rowOutlines.direction(GC.Spread.Sheets.Outlines.OutlineDirection.backward);
sheet.columnOutlines.direction(GC.Spread.Sheets.Outlines.OutlineDirection.forward);
sheet.resumePaint();
```

## Table of contents

### Enumeration members

- [backward](GC.Spread.Sheets.Outlines.OutlineDirection#backward)
- [forward](GC.Spread.Sheets.Outlines.OutlineDirection#forward)

## Enumeration members

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

• **backward** = `0`

The summary row is above or to the left of the group detail.

___

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

• **forward** = `1`

The summary row is below or to the right of the group detail.
