Pakiet | mx.rpc.events |
Klasa | public class InvokeEvent |
Dziedziczenie | InvokeEvent 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
Metody publiczne
Metoda | Zdefiniowane przez | ||
---|---|---|---|
InvokeEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, token:mx.rpc:AsyncToken = null, message:IMessage = null)
Create a new InvokeEvent. | InvokeEvent | ||
[przesłanianie]
Clones the MessageEvent. | MessageEvent | ||
[statyczny]
Utility method to create a new MessageEvent that doesn't bubble and
is not cancelable. | MessageEvent | ||
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 InvokeEvent. | InvokeEvent | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Stałe publiczne
Stała | Zdefiniowane przez | ||
---|---|---|---|
INVOKE : String = "invoke" [statyczny]
The INVOKE event type. | InvokeEvent |
Konstruktor Szczegół
InvokeEvent | () | Konstruktor |
public function InvokeEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, 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 |
Create a new InvokeEvent.
Parametrytype:String — The event type; indicates the action that triggered the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble up the display list hierarchy.
| |
cancelable:Boolean (default = false ) — Specifies whether the behavior associated with the event can be prevented.
| |
token:mx.rpc:AsyncToken (default = null ) — Token that represents the call to the method. Used in the asynchronous
completion token pattern.
| |
message:IMessage (default = null ) — Source Message of the request.
|
Szczegół metody
toString | () | metoda |
Szczegół stałej
INVOKE | Stała |
public static const INVOKE:String = "invoke"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
The INVOKE event type.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
token | The token that represents the indiviudal call to the method. Used in the asynchronous completion token pattern. |
cancelable | true |
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 . |
message | The request 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