Arguments used with the InteractionComponent.onFocusEnd event.
InteractionComponent.onFocusEnd
//@input Component.InteractionComponent interactionComponent// Subscribe to the onFocusEnd eventvar onFocusEndEvent = script.interactionComponent.onFocusEnd.add(function(focusEndEventArgs){ print("Focus End!"); });// Unsubscribe from the onFocusEnd eventscript.interactionComponent.onFocusEnd.remove(onFocusEndEvent); Copy
//@input Component.InteractionComponent interactionComponent// Subscribe to the onFocusEnd eventvar onFocusEndEvent = script.interactionComponent.onFocusEnd.add(function(focusEndEventArgs){ print("Focus End!"); });// Unsubscribe from the onFocusEnd eventscript.interactionComponent.onFocusEnd.remove(onFocusEndEvent);
Protected
Returns the name of this object's type.
Returns true if the object matches or derives from the passed in type.
Returns true if this object is the same as other. Useful for checking if two references point to the same thing.
other
Arguments used with the
InteractionComponent.onFocusEnd
event.Example