Version: Unity 6.7 Alpha (6000.7)
LanguageEnglish
  • C#

OnComponentRemovedAttribute

class in UnityEngine.UIElements

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Declares a static method of a VisualElementComponentAttribute struct that runs when VisualElement.RemoveComponent removes the component from an element.

The method must be @@static void M(ref T self, VisualElement owner), and a component may declare at most one. It runs before the component storage is freed and before its [RegisterCallback] handlers are unregistered, so the method can still read its own live data and clean up any owner state the component configured. It runs only on an explicit RemoveComponent@@ call; it does not run when the element detaches from a panel or when the element itself is torn down.