Package | mx.events |
Class | public class FlexNativeWindowBoundsEvent |
Inheritance | FlexNativeWindowBoundsEvent flash.events.NativeWindowBoundsEvent |
Language Version : | ActionScript 3.0 |
Product Version : | Flex 3 |
Runtime Versions : | AIR 1.1 |
See also
Method | Defined By | ||
---|---|---|---|
FlexNativeWindowBoundsEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, beforeBounds:Rectangle = null, afterBounds:Rectangle = null)
Constructor. | FlexNativeWindowBoundsEvent |
Constant | Defined By | ||
---|---|---|---|
WINDOW_MOVE : String = windowMove [static]
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 [static]
The FlexNativeWindowBoundsEvent.WINDOW_RESIZE constant defines the value of the
type property of the event object for a
windowResize event. | FlexNativeWindowBoundsEvent |
FlexNativeWindowBoundsEvent | () | Constructor |
public function FlexNativeWindowBoundsEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, beforeBounds:Rectangle = null, afterBounds:Rectangle = null)
Language Version : | ActionScript 3.0 |
Product Version : | Flex 3 |
Runtime Versions : | 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.
|
WINDOW_MOVE | Constant |
public static const WINDOW_MOVE:String = windowMove
Language Version : | ActionScript 3.0 |
Product Version : | Flex 3 |
Runtime Versions : | 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 | Constant |
public static const WINDOW_RESIZE:String = windowResize
Language Version : | ActionScript 3.0 |
Product Version : | Flex 3 |
Runtime Versions : | 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 |