Pacote | mx.events |
Classe | public class FlexNativeWindowBoundsEvent |
Herança | FlexNativeWindowBoundsEvent NativeWindowBoundsEvent Event Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | AIR 1.1 |
Elementos da API relacionados
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
FlexNativeWindowBoundsEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, beforeBounds:Rectangle = null, afterBounds:Rectangle = null)
Constructor. | FlexNativeWindowBoundsEvent | ||
[substituir]
Cria uma cópia do objeto NativeWindowBoundsEvent e define o valor de cada propriedade para corresponder ao do original. | NativeWindowBoundsEvent | ||
Uma função de utilitário para implementar o método toString() em classes ActionScript 3.0 Event personalizadas. | Event | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Verifica se o método preventDefault() foi chamado no evento. | Event | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Cancela um comportamento padrão de evento se esse comportamento puder ser cancelado. | Event | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Impede o processamento de qualquer ouvinte de evento no nó atual e qualquer nó subsequente no fluxo de eventos. | Event | ||
Impede o processamento de algum ouvinte de evento em nós subsequentes ao nó atual no fluxo de eventos. | Event | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
[substituir]
Retorna uma string que contém todas as propriedades do objeto NativeWindowBoundsEvent. | NativeWindowBoundsEvent | ||
Retorna o valor primitivo do objeto especificado. | Object |
Constantes públicas
Constante | Definido por | ||
---|---|---|---|
WINDOW_MOVE : String = "windowMove" [estático]
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" [estático]
The FlexNativeWindowBoundsEvent.WINDOW_RESIZE constant defines the value of the
type property of the event object for a
windowResize event. | FlexNativeWindowBoundsEvent |
Detalhes do construtor
FlexNativeWindowBoundsEvent | () | Construtor |
public function FlexNativeWindowBoundsEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, beforeBounds:Rectangle = null, afterBounds:Rectangle = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | AIR 1.1 |
Constructor.
Parâmetrostype: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.
|
Detalhes da constante
WINDOW_MOVE | Constante |
public static const WINDOW_MOVE:String = "windowMove"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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:10 AM Z