# ScrollView.TouchScrollBehavior

> The behavior to use when a user tries to scroll past the end of the ScrollView content using a touch interaction.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine.UIElements](/engine/6000.7/script-reference/unityengine/uielements.md)
* **Assembly:** UnityEngine.UIElementsModule

```csharp
public enum ScrollView.TouchScrollBehavior
```

## Fields

| Value                                                                                                                 | Description                                                                                      |
| --------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------ |
| [Clamped](/engine/6000.7/script-reference/unityengine/uielements/scrollview/touchscrollbehavior/clamped.md)           | The content position is clamped to the ScrollView boundaries.                                    |
| [Elastic](/engine/6000.7/script-reference/unityengine/uielements/scrollview/touchscrollbehavior/elastic.md)           | The content position can overshoot the ScrollView boundaries, but then "snaps" back within them. |
| [Unrestricted](/engine/6000.7/script-reference/unityengine/uielements/scrollview/touchscrollbehavior/unrestricted.md) | The content position can move past the ScrollView boundaries.                                    |
