Pakket | mx.events |
Klasse | public class FlexNativeWindowBoundsEvent |
Overerving | FlexNativeWindowBoundsEvent NativeWindowBoundsEvent Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | AIR 1.1 |
Verwante API-elementen
Openbare eigenschappen
Openbare methoden
Methode | Gedefinieerd door | ||
---|---|---|---|
FlexNativeWindowBoundsEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, beforeBounds:Rectangle = null, afterBounds:Rectangle = null)
Constructor. | FlexNativeWindowBoundsEvent | ||
[overschrijven]
Maakt een kopie van het NativeWindowBoundsEvent-object en stelt de waarde van elke eigenschap in zodat deze overeenkomt met die van het origineel. | NativeWindowBoundsEvent | ||
Een hulpprogrammafunctie voor de implementatie van de methode toString() in aangepaste ActionScript 3.0-Event-klassen. | Event | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Controleert of de methode preventDefault() is aangeroepen voor de gebeurtenis. | Event | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Annuleert het standaardgedrag van een gebeurtenis wanneer dat gedrag kan worden geannuleerd. | Event | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Voorkomt het verwerken van gebeurtenislisteners in het huidige knooppunt en volgende knooppunten in de gebeurtenisstroom. | Event | ||
Voorkomt het verwerken van gebeurtenislisteners in knooppunten die volgen op het huidige knooppunt in de gebeurtenisstroom. | Event | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
[overschrijven]
Retourneert een tekenreeks die alle eigenschappen van het NativeWindowBoundsEvent-object bevat. | NativeWindowBoundsEvent | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Openbare constanten
Constante | Gedefinieerd door | ||
---|---|---|---|
WINDOW_MOVE : String = "windowMove" [statisch]
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" [statisch]
The FlexNativeWindowBoundsEvent.WINDOW_RESIZE constant defines the value of the
type property of the event object for a
windowResize event. | FlexNativeWindowBoundsEvent |
Constructordetails
FlexNativeWindowBoundsEvent | () | Constructor |
public function FlexNativeWindowBoundsEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, beforeBounds:Rectangle = null, afterBounds:Rectangle = null)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | AIR 1.1 |
Constructor.
Parameterstype: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.
|
Constantedetails
WINDOW_MOVE | Constante |
public static const WINDOW_MOVE:String = "windowMove"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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 | Constante |
public static const WINDOW_RESIZE:String = "windowResize"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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 |
Wed Jun 13 2018, 11:42 AM Z