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

EventBase

class in UnityEngine.Experimental.UIElements

切换到手册

描述

所有 UIElements 事件的基类。

变量

bubblesWhether this event type bubbles up in the event propagation path.
currentTarget事件的当前目标。当前路径是传播路径中目前正在为其执行事件处理程序的元素。
dispatchWhether the event is being dispatched to a visual element. An event cannot be redispatched while it being dispatched. If you need to recursively dispatch an event, it is recommended that you use a copy of the event.
flags事件的标志。
imguiEventThe IMGUIEvent at the source of this event. The source can be null since not all events are generated by IMGUI.
isDefaultPrevented如果不应为此事件执行默认操作,则返回 true。
isImmediatePropagationStoppedWhether StopImmediatePropagation() was called for this event.
isPropagationStoppedWhether StopPropagation() was called for this event.
originalMousePositionThe original mouse position of the IMGUI event, before it is transformed to the current target local coordinates.
pooledWhether the event is allocated from a pool of events.
propagationPhase当前传播阶段。
targetThe target visual element that received this event. Unlike currentTarget, this target does not change when the event is sent to other elements along the propagation path.
timestampThe time when the event was created.
tricklesDownWhether this event is sent down the event propagation path during the TrickleDown phase.

公共函数

DisposeIDisposable 实现。
GetEventTypeIdRetrieves the type id for this event instance.
PreventDefaultWhether the default actions are prevented from being executed for this event.
StopImmediatePropagationImmediately stops the propagation of the event. The event is not sent to other elements along the propagation path. This method prevents other event handlers from executing on the current target.
StopPropagationStops propagating this event. The event is not sent to other elements along the propagation path. This method does not prevent other event handlers from executing on the current target.

受保护的函数

InitResets all event members to their initial values.

静态函数

RegisterEventTypeRegisters an event class to the event type system.