# Using Touch Support with Selections

Learn how you can select columns, rows, cell ranges, and the entire control using touch gestures in Spread for ASP.NET control.

## Content

You can select columns, rows, cell ranges, and the entire control using touch gestures.
The selection gripper is displayed when touching the cell, column, or row. The gripper is not displayed when using the mouse or keyboard. The selection grippers are displayed on the outside edge of the range (top-left and bottom-right edges, by default). The border is displayed around the selected cell range when using touch operations.
Tap a cell to select the cell and display the selection gripper. Press the cell selection gripper and slide. Release to select a cell range.
![Selection gripper: multiple cells](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/tselectcells.png)
Tap a column header (or row header) to select a column (or row). You can then press the selection gripper and slide to select a column range (or row range). Release to complete the selection.
![Selection gripper: multiple rows](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/tselectrow.png)
![Selection gripper: multiple columns](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/tselectcol.png)
You can select the entire control by tapping the corner header.
You can change the size of the cell range selection by pressing the selection gripper and sliding in any direction. Release to complete the action.
You can customize the gripper appearance using the [SelectionGripperThickness](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.SelectionGripperThickness.html), [SelectionGripperLineColor](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.SelectionGripperLineColor.html), and [SelectionGripperBackColor](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.SelectionGripperBackColor.html) properties as in the following image.
![Customized Selection Gripper](https://cdn.mescius.io/document-site-files/images/346c9178-0ed8-4fb9-908b-1565b22fb408/artwork/tselect.png)

## Using Code

Set the [SelectionGripperThickness](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.SelectionGripperThickness.html), [SelectionGripperLineColor](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.SelectionGripperLineColor.html), and [SelectionGripperBackColor](/spreadnet/api/latest/online-asp/FarPoint.Web.Spread/FarPoint.Web.Spread.TouchInfo.SelectionGripperBackColor.html) properties.

## Example

This example sets the selection gripper appearance.

```csharp
FpSpread1.TouchInfo.SelectionGripperBackColor = System.Drawing.Color.Aqua;
FpSpread1.TouchInfo.SelectionGripperLineColor = System.Drawing.Color.Red;
FpSpread1.TouchInfo.SelectionGripperThickness = 2;
```

```vbnet
FpSpread1.TouchInfo.SelectionGripperBackColor = System.Drawing.Color.Aqua
FpSpread1.TouchInfo.SelectionGripperLineColor = System.Drawing.Color.Red
FpSpread1.TouchInfo.SelectionGripperThickness = 2
```

## See Also

[Customizing Selections of Cells](/spreadnet/docs/latest/online-asp/overview/spweb-devguide/spweb-interaction/spweb-interact-selection)
[TapToAddSelection](/spreadnet/docs/latest/online-asp/overview/spweb-clientscriptref/clientscript-members/clientscript-allprops/CSSR-taptoadd)