class in UnityEngine.Experimental.UIElements
The base class for all UIElements events.
bubbles | Returns whether this event type bubbles up in the event propagation path. |
capturable | Return whether this event is sent down the event propagation path during the capture phase. |
currentTarget | The current target of the event. The current target is the element in the propagation path for which event handlers are currently being executed. |
dispatch | Return whether the event is currently being dispatched to visual element. An event can not be redispatched while being dispatched. If you need to recursively redispatch an event, you should use a copy. |
imguiEvent | The IMGUIEvent at the source of this event. This can be null as not all events are generated by IMGUI. |
isDefaultPrevented | Return true if the default actions should not be executed for this event. |
isImmediatePropagationStopped | Return true if StopImmediatePropagation() has been called for this event. |
isPropagationStopped | Return true if StopPropagation() has been called for this event. |
propagationPhase | The current propagation phase. |
target | The target for this event. The is the visual element that received the event. Unlike currentTarget, target does not change when the event is sent to elements along the propagation path. |
timestamp | The time at which the event was created. |
GetEventTypeId | Get the type id for this event instance. |
PreventDefault | Call this function to prevent the execution of the default actions for this event. |
StopImmediatePropagation | Immediately stop the propagation of this event. The event will not be sent to any further event handlers on the current target or on any other element in the propagation path. |
StopPropagation | Stop the propagation of this event. The event will not be sent to any further element in the propagation path. Further event handlers on the current target will be executed. |
Init | Reset the event members to their initial value. |
RegisterEventType | Register an event class to the event type system. |