# Using Touch Support with Scrolling

Learn how you can use touch gestures when scrolling in Spread for ASP.NET control.

## Content

You can use touch gestures when scrolling in the control.
You can tap the scroll bar or press and slide the scroll bar to scroll. You can also use panning gestures in the cell area of the control (vertical, horizontal, or oblique). Panning in the diagonal direction scrolls horizontally and vertically. Specify the type of panning mode with the [PanningMode](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.PanningMode.html) property and [SpreadPanningMode](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SpreadPanningMode.html) enumeration.
![Scrollbars](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/touchscroll.png)
![Horizontal Panning](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/panhorizontal.png)
![Vertical Panning](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/panvertical.png)
![Diagonal Panning](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/pandiagonal.png)
Panning does not apply to header or footer areas.

## Using Code

Set the [PanningMode](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.PanningMode.html) property.

## Example

This example sets the [PanningMode](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.PanningMode.html) property to Both.

```csharp
FpSpread1.Sheets[0].Columns.Count = 10;
FpSpread1.Sheets[0].Rows.Count = 20;
FpSpread1.TouchInfo.PanningMode = FarPoint.Web.Spread.SpreadPanningMode.Both;
```

```vbnet
FpSpread1.Sheets(0).Columns.Count = 10
FpSpread1.Sheets(0).Rows.Count = 20
FpSpread1.TouchInfo.PanningMode = FarPoint.Web.Spread.SpreadPanningMode.Both
```

## See Also

[Customizing the Scroll Bar Colors](/spreadnet/docs/latest/online-asp/overview/spweb-devguide/spweb-interaction/spweb-interact-control/spweb-scrollbarcolors)
[Displaying Scroll Bars](/spreadnet/docs/latest/online-asp/overview/spweb-devguide/spweb-interaction/spweb-interact-control/spweb-SetScrollBars)