Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Experimental: this API is experimental and might be changed or removed in the future.

CallbackEventHandler.RegisterCallback

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

public method RegisterCallback(callback: EventCallback<TEventType>, useCapture: Experimental.UIElements.Capture): void;
public void RegisterCallback(EventCallback<TEventType> callback, Experimental.UIElements.Capture useCapture);
public method RegisterCallback(callback: EventCallback<TEventType,TUserArgsType>, userArgs: TUserArgsType, useCapture: Experimental.UIElements.Capture): void;
public void RegisterCallback(EventCallback<TEventType,TUserArgsType> callback, TUserArgsType userArgs, Experimental.UIElements.Capture useCapture);

Parameters

callbackThe event handler to add.
useCaptureBy default the callback will be called during the bubbling phase. Pass Capture.Capture to have the callback called during the capture phase instead.
userArgsData to pass to the callback.

Description

Add an event handler on the instance. If the handler has already been registered on the same phase (capture or bubbling), this will have no effect.

Did you find this page useful? Please give it a rating: