# Using Touch Support when Moving Columns

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

## Content

You can use touch gestures to move columns.
Tap the column header to select it, then slide to the target location. Release to move the column.
![Before Move Action](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/tcolmove.png)
The following image displays the column after the move action has been completed.
![After Move Action](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/tcolmove2.png)
Select a column header range and then press and slide to move the range. Release to complete the action.
![Moving a Range](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/tcolrangemove.png)
The [AllowColumnMove](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.AllowColumnMove.html) property must be true to move columns.
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 [AllowColumnMove](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.AllowColumnMove.html) property.

## Example

This example code sets the [AllowColumnMove](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.SheetView.AllowColumnMove.html) property.

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

```vbnet
FpSpread1.ActiveSheetView.AllowColumnMove = True
```