Pakiet | mx.rpc.events |
Klasa | public class HeaderEvent |
Dziedziczenie | HeaderEvent AbstractEvent MessageEvent Event Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Właściwości publiczne
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
bubbles : Boolean [tylko do odczytu]
Określa, czy zdarzenie może przechodzić fazę propagacji. | Event | ||
cancelable : Boolean [tylko do odczytu]
Wskazuje, czy można uniemożliwić operacje skojarzone ze zdarzeniem. | Event | ||
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
currentTarget : Object [tylko do odczytu]
Obiekt przetwarzający aktywnie obiekt Event za pomocą detektora zdarzeń. | Event | ||
eventPhase : uint [tylko do odczytu]
Bieżąca faza przepływu zdarzeń. | Event | ||
header : Object [tylko do odczytu]
Header that the RPC call returned in the response. | HeaderEvent | ||
message : IMessage
The Message associated with this event. | MessageEvent | ||
target : Object [tylko do odczytu]
Miejsce docelowe zdarzenia. | Event | ||
token : mx.rpc:AsyncToken [tylko do odczytu]
The token that represents the call to the method. | AbstractEvent | ||
type : String [tylko do odczytu]
Typ zdarzenia. | Event |
Metody publiczne
Metoda | Zdefiniowane przez | ||
---|---|---|---|
HeaderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, header:Object = null, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Creates a new HeaderEvent. | HeaderEvent | ||
[przesłanianie]
Clones the MessageEvent. | MessageEvent | ||
[statyczny]
Utility method to create a new HeaderEvent that doesn't bubble and is cancelable. | HeaderEvent | ||
Funkcja narzędziowa umożliwiająca implementację metody toString() w niestandardowych klasach Event w języku ActionScript 3.0. | Event | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Sprawdza, czy w odniesieniu do tego zdarzenia wywołano metodę preventDefault(). | Event | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Anuluje domyślne ustawienia zdarzenia, o ile zachowanie to może być anulowane. | Event | ||
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 | ||
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węźle bieżącym i węzłach następujących po nim. | Event | ||
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węzłach następujących po węźle bieżącym w przepływie zdarzeń. | Event | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
[przesłanianie]
Returns a string representation of the HeaderEvent. | HeaderEvent | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Stałe publiczne
Stała | Zdefiniowane przez | ||
---|---|---|---|
HEADER : String = "header" [statyczny]
The HEADER event type. | HeaderEvent |
Szczegół właściwości
header | właściwość |
Konstruktor Szczegół
HeaderEvent | () | Konstruktor |
public function HeaderEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = true, header:Object = null, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Creates a new HeaderEvent.
Parametrytype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble up the display list hierarchy.
| |
cancelable:Boolean (default = true ) — Specifies whether the behavior associated with the event can be prevented. The dfault is true , but the preventDefault() method has no effect.
| |
header:Object (default = null ) — Object that holds the header of the call.
| |
token:mx.rpc:AsyncToken (default = null ) — AsyncToken that represents the call to the method. Used in the asynchronous completion token pattern.
| |
message:IMessage (default = null ) — Source Message of the header.
|
Szczegół metody
createEvent | () | metoda |
public static function createEvent(header:Object, token:mx.rpc:AsyncToken, message:IMessage):HeaderEvent
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Utility method to create a new HeaderEvent that doesn't bubble and is cancelable.
Parametry
header:Object — Object that holds the header of the call.
| |
token:mx.rpc:AsyncToken — AsyncToken that represents the call to the method. Used in the asynchronous completion token pattern.
| |
message:IMessage — Source Message header.
|
HeaderEvent — Returns a new HeaderEvent that doesn't bubble and is cancelable.
|
toString | () | metoda |
Szczegół stałej
HEADER | Stała |
public static const HEADER:String = "header"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The HEADER event type.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
token | The token that represents the call to the method. Used in the asynchronous completion token pattern. |
cancelable | true, but the preventDefault() method has no effect. |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
header | Header that the RPC call returns in the response. |
message | The Message associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 12:06 PM Z