EnterFrameEvent
class
Hide inherited
class EnterFrameEvent extends BroadcastEvent {
num _passedTime;
num get passedTime => _passedTime;
EnterFrameEvent(num passedTime):super(Event.ENTER_FRAME), _passedTime = passedTime;
}
Extends
Event > BroadcastEvent > EnterFrameEvent
Constructors
Code
new EnterFrameEvent (num passedTime) #
Creates a new Object instance.
Object instances have no meaningful state, and are only useful
through their identity. An Object instance is equal to itself
only.
EnterFrameEvent(num passedTime):super(Event.ENTER_FRAME), _passedTime = passedTime;
Properties
Code
final bool bubbles #
bool get bubbles => _bubbles;
Code
final bool captures #
bool get captures => false;
EventDispatcher get currentTarget => _currentTarget;
Code
final int eventPhase #
int get eventPhase => _eventPhase;
Code
final num passedTime #
num get passedTime => _passedTime;
bool get stopsImmediatePropagation => _stopsImmediatePropagation;
Code
final bool stopsPropagation #
bool get stopsPropagation => _stopsPropagation;
EventDispatcher get target => _target;
Code
final String type #
String get type => _type;
Methods
void stopImmediatePropagation() {
_stopsPropagation = true;
_stopsImmediatePropagation = true;
}
Code
void stopPropagation () #
void stopPropagation() {
_stopsPropagation = true;
}