# Displaying Scroll Bar Text Tips

Learn how you can display scroll bar text tips for the spreadsheet using Spread for ASP.NET. Learn more in documentation.

## Content

You can display scroll bar text tips for the sheet when the user scrolls. The text tip displays information for the leftmost column or the topmost row in the viewing area.
![Scroll Bars](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/scrollbartexttip.png)
You can also customize the scrolling text tip when using virtual paging with the [VirtualScrollPagingFormatString](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.VirtualScrollPagingFormatString.html) property.

## Using the Properties Window

1. Select the FpSpread component.
2. Select the **Sheets** collection in the properties window.
3. Select the **ScrollingContentVisible** property in the **Sheets** collection editor.

## Using Code

Use the [ScrollingContentVisible](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.ScrollingContentVisible.html) property to enable tips for the scroll bar.

## Example

The following example enables the tips for the scroll bar.

```csharp
FpSpread1.Sheets[0].ScrollingContentVisible = true;
```

```vbnet
FpSpread1.Sheets(0).ScrollingContentVisible = True
```

## Using the Spread Designer

1. Select the **Settings** menu.
2. Select the **Scrollbar** icon under the **Spread Settings** section.
3. Select the **Scrolling Content** option.
4. Click **OK** to apply the changes.
5. Click **Apply and Exit** to close the Spread Designer.

## See Also

[ScrollingContentHiddenDelay Property](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.ScrollingContentHiddenDelay.html)
[ScrollingContentColumns Property](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.ScrollingContentColumns.html)
[ScrollingContentMaxHeight Property](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.ScrollingContentMaxHeight.html)