# reapplyDrivenProperties

> Event invoked when a RectTransform needs its driven properties reapplied.

## Definition

* **Type:** Event
* **Namespace:** [UnityEngine](/engine/6000.6/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static event RectTransform.ReapplyDrivenProperties reapplyDrivenProperties
```

### Remarks

This event fires when a `RectTransform` awakens from load (for example, after scene load or instantiation) or is deactivated. Subscribe to this event and call [DrivenRectTransformTracker.Add](/engine/6000.6/script-reference/unityengine/drivenrecttransformtracker/add.md) in the handler to re-establish driven properties on the affected `RectTransform`.

Additional Resources: [RectTransform.ReapplyDrivenProperties](/engine/6000.6/script-reference/unityengine/recttransform/reapplydrivenproperties.md)
