# GC.Spread.Sheets.ShowResizeTip

## Content

# Enumeration: ShowResizeTip

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

Defines how the resize 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.ShowResizeTip#both)
- [column](GC.Spread.Sheets.ShowResizeTip#column)
- [none](GC.Spread.Sheets.ShowResizeTip#none)
- [row](GC.Spread.Sheets.ShowResizeTip#row)

## Enumeration members

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

• **both** = `3`

Specifies that horizontal and vertical resize tips are displayed.

___

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

• **column** = `1`

Specifies that only the horizontal resize tip is displayed.

___

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

• **none** = `0`

Specifies that no resize tip is displayed.

___

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

• **row** = `2`

Specifies that only the vertical resize tip is displayed.
