# Unregister(TElement)

> Removes all group event handlers from the given element.

## Definition

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

## Unregister(T)

```csharp
public void Unregister(TElement element)
```

### Parameters

**** (T): The element to remove the group from. If this callback group was never registered, nothing happens.

### Remarks

This method is usually much faster than unregistering the corresponding callbacks individually.

If any callback contained in this group is unregistered individually prior to calling this method, an undefined behavior will result.
