eDriven Framework API
EventPhase Enumeration
NamespaceseDriven.Core.EventsEventPhase
eDriven Framework API
The event phase flags Used by systems that support event bubbling Describes the phase in the process of transfering an event of the particular child in the hierarchy The idea behind this enumerator is to have 6 combos, instead of only 2 (bubbling/capture phase)
Declaration Syntax
C#Visual BasicVisual C++
[FlagsAttribute]
public enum EventPhase
<FlagsAttribute> _
Public Enumeration EventPhase
[FlagsAttribute]
public enum class EventPhase
Members
MemberDescription
Capture Capture phase A phase when an event is transfered from top-most parent to child and dispatched by each component
Target Target phase The phase when the event is dispatched by target
Bubbling Bubbling phase The phase when the event bubbles from child to top-most parent and dispatched by each component
CaptureAndTarget Capture and target phase
TargetAndBubbling Target and bubbling phase

Assembly: eDriven.Core (Module: eDriven.Core) Version: 2.0.1.0 (2.0.1.0)