# Using Touch Support when Moving Rows

Learn how you can move columns using touch gestures in Spread for ASP.NET control.

## Content

You can use touch gestures to move rows.
Tap the row header to select it, then slide to the target location. Release to move the row.
![Moving Rows](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/images/h1.png)
Select a row header range and then press and slide to move the range. Release to complete the action.
![Moving Range](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/images/h2.png)
The [AllowRowMove](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.AllowRowMove.html) property must be true to move rows.
Refer to [Using Touch Support with Selections](/spreadnet/docs/latest/online-asp/overview/spweb-devguide/spweb-tmain/spweb-tusing/spweb-tselect) for more information on how to select a column or row.

## Using Code

Set the AllowRowMove property

## Example

```csharp
FpSpread1.ActiveSheetView.AllowRowMove = true;
```

```csharp
FpSpread1.ActiveSheetView.AllowRowMove = true;
```