# showAddRemoveFooter

> This property controls whether a footer will be added to the list view.

## Definition

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

```csharp
[UxmlAttribute]
public bool showAddRemoveFooter { get; set; }
```

### Remarks

The default value is `false`. When this property is set to `true`, Unity adds a footer under the scroll view. This footer contains two buttons: A "+" button. When clicked, it adds a single item at the end of the list view. A "-" button. When clicked, it removes all selected items, or the last item if none are selected. If the [\_makeFooter](/engine/6000.7/script-reference/unityengine/uielements/baselistview/makefooter.md) callback is set, it will override this property.
