# ListViewReorderMode

> Options to change the drag-and-drop mode for items in the ListView.

## Definition

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

```csharp
public enum ListViewReorderMode
```

## Remarks

Using `Animated` will affect the layout of the ListView, by adding drag handles before every item. Multiple item drag is only supported in the `Simple` mode.

## Fields

| Value                                                                                              | Description                                                                                                             |
| -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| [Animated](/engine/6000.0/script-reference/unityengine/uielements/listviewreordermode/animated.md) | ListView will add drag handles before every item, that can be used to drag a single item with animated visual feedback. |
| [Simple](/engine/6000.0/script-reference/unityengine/uielements/listviewreordermode/simple.md)     | ListView will display the standard blue line dragger on reorder.                                                        |
