Pakiet | mx.automation.events |
Klasa | public class EventDetails |
Dziedziczenie | EventDetails Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Właściwości publiczne
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
eventType : String
Type of the event
| EventDetails | ||
handlerFunction : Function
Handler function that processes the event
| EventDetails | ||
priority : int
The priority level of the event listener. | EventDetails | ||
useCapture : Boolean
Determines whether the listener works in the capture phase or the target and bubbling phases. | EventDetails | ||
useWeekRef : Boolean
Determines whether the reference to the listener is strong or weak. | EventDetails |
Metody publiczne
Metoda | Zdefiniowane przez | ||
---|---|---|---|
EventDetails(type:String, handler:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false)
Constructor
| EventDetails | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Szczegół właściwości
eventType | właściwość |
public var eventType:String
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Type of the event
handlerFunction | właściwość |
public var handlerFunction:Function
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Handler function that processes the event
priority | właściwość |
public var priority:int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
The priority level of the event listener.
Wartością domyślną jest 0.
useCapture | właściwość |
public var useCapture:Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Determines whether the listener works in the capture phase or the target and bubbling phases.
Wartością domyślną jest false.
useWeekRef | właściwość |
public var useWeekRef:Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Determines whether the reference to the listener is strong or weak. strong reference (the default) prevents your listener from being garbage-collected. weak reference does not.
Wartością domyślną jest false.
Konstruktor Szczegół
EventDetails | () | Konstruktor |
public function EventDetails(type:String, handler:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 1.5 |
Constructor
Parametrytype:String — The event type; indicates the action that caused the event.
| |
handler:Function — Handler function that processes the event.
| |
useCapture:Boolean (default = false ) — Determines whether the listener works in the capture phase or the target and bubbling phases.
| |
priority:int (default = 0 ) — The priority level of the event listener.
| |
useWeakReference:Boolean (default = false ) — Determines whether the reference to the listener is strong or weak.
strong reference (the default) prevents your listener from being garbage-collected.
weak reference does not.
|
Tue Jun 12 2018, 12:06 PM Z