# GC.Spread.Sheets.ShowScrollTip

## Content

# Enumeration: ShowScrollTip

[Spread](../modules/GC.Spread).[Sheets](../modules/GC.Spread.Sheets).ShowScrollTip

Specifies how the scroll tip is displayed.

**`example`**
```javascript
//This example displays both resize tips.
spread.options.showDragDropTip = true;
spread.options.showDragFillTip = true;
spread.options.showScrollTip = GC.Spread.Sheets.ShowScrollTip.both;
spread.options.showResizeTip = GC.Spread.Sheets.ShowResizeTip.both;
```

## Table of contents

### Enumeration members

- [both](GC.Spread.Sheets.ShowScrollTip#both)
- [horizontal](GC.Spread.Sheets.ShowScrollTip#horizontal)
- [none](GC.Spread.Sheets.ShowScrollTip#none)
- [vertical](GC.Spread.Sheets.ShowScrollTip#vertical)

## Enumeration members

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

• **both** = `3`

Specifies that horizontal and vertical scroll tips are displayed.

___

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

• **horizontal** = `1`

Specifies that only the horizontal scroll tip is displayed.

___

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

• **none** = `0`

Specifies that no scroll tip is displayed.

___

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

• **vertical** = `2`

Specifies that only the vertical scroll tip is displayed.
