Pakiet | mx.events |
Klasa | public class FlexNativeWindowBoundsEvent |
Dziedziczenie | FlexNativeWindowBoundsEvent NativeWindowBoundsEvent Event Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | AIR 1.1 |
Powiązane elementy interfejsu API
Właściwości publiczne
Metody publiczne
Metoda | Zdefiniowane przez | ||
---|---|---|---|
FlexNativeWindowBoundsEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, beforeBounds:Rectangle = null, afterBounds:Rectangle = null)
Constructor. | FlexNativeWindowBoundsEvent | ||
[przesłanianie]
Tworzy kopię obiektu NativeWindowBoundsEvent i ustawia wartości poszczególnych właściwości zgodnie z właściwościami oryginału. | NativeWindowBoundsEvent | ||
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]
Zwraca ciąg znaków, który zawiera wszystkie właściwości obiektu NativeWindowBoundsEvent. | NativeWindowBoundsEvent | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Stałe publiczne
Stała | Zdefiniowane przez | ||
---|---|---|---|
WINDOW_MOVE : String = "windowMove" [statyczny]
The FlexNativeWindowBoundsEvent.WINDOW_MOVE constant defines the value of the
type property of the event object for a
windowMove event. | FlexNativeWindowBoundsEvent | ||
WINDOW_RESIZE : String = "windowResize" [statyczny]
The FlexNativeWindowBoundsEvent.WINDOW_RESIZE constant defines the value of the
type property of the event object for a
windowResize event. | FlexNativeWindowBoundsEvent |
Konstruktor Szczegół
FlexNativeWindowBoundsEvent | () | Konstruktor |
public function FlexNativeWindowBoundsEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, beforeBounds:Rectangle = null, afterBounds:Rectangle = null)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | AIR 1.1 |
Constructor.
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 = false ) — Specifies whether the behavior
associated with the event can be prevented.
| |
beforeBounds:Rectangle (default = null ) — The bounds of the window before the resize.
| |
afterBounds:Rectangle (default = null ) — The bounds of the window before the resize.
|
Szczegół stałej
WINDOW_MOVE | Stała |
public static const WINDOW_MOVE:String = "windowMove"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | AIR 1.1 |
The FlexNativeWindowBoundsEvent.WINDOW_MOVE constant defines the value of the
type
property of the event object for a
windowMove
event.
The properties of the event object have the following values:
Property | Value |
---|---|
afterBounds | The bounds of the window after the bounds changed. |
beforeBounds | The bounds of the window before the bounds changed. |
bubbles | false |
cancelable | false |
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 . |
file | The File object 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. |
type | FlexNativeWindowBoundsEvent.WINDOW_MOVE |
WINDOW_RESIZE | Stała |
public static const WINDOW_RESIZE:String = "windowResize"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 3 |
Wersje środowiska wykonawczego: | AIR 1.1 |
The FlexNativeWindowBoundsEvent.WINDOW_RESIZE constant defines the value of the
type
property of the event object for a
windowResize
event.
The properties of the event object have the following values:
Property | Value |
---|---|
afterBounds | The bounds of the window after the bounds changed. |
beforeBounds | The bounds of the window before the bounds changed. |
bubbles | false |
cancelable | false |
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 . |
file | The File object 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. |
type | FlexNativeWindowBoundsEvent.WINDOW_RESIZE |
Tue Jun 12 2018, 12:06 PM Z