Pacote | mx.managers |
Interface | public interface IFocusManagerContainer extends IEventDispatcher |
Implementadores | Container, Menu, SearchUserDialog, SkinnableContainerBase |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Propriedade | Definido por | ||
---|---|---|---|
defaultButton : IFlexDisplayObject
The Button control designated as the default button
for the container. | IFocusManagerContainer | ||
focusManager : IFocusManager
The FocusManager for this component. | IFocusManagerContainer | ||
systemManager : ISystemManager [somente leitura]
Returns the SystemManager object used by this component. | IFocusManagerContainer |
Método | Definido por | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | IEventDispatcher | ||
Determines whether the specified display object is a child
of the container instance or the instance itself. | IFocusManagerContainer | ||
Envia um evento para o fluxo de eventos. | IEventDispatcher | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | IEventDispatcher | ||
Remove um ouvinte do objeto EventDispatcher. | IEventDispatcher | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | IEventDispatcher |
defaultButton | propriedade |
defaultButton:IFlexDisplayObject
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The Button control designated as the default button for the container. When controls in the container have focus, pressing the Enter key is the same as clicking this Button control.
O valor padrão é null.
Implementação
public function get defaultButton():IFlexDisplayObject
public function set defaultButton(value:IFlexDisplayObject):void
focusManager | propriedade |
focusManager:IFocusManager
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The FocusManager for this component.
The FocusManager must be in a focusManager
property.
Implementação
public function get focusManager():IFocusManager
public function set focusManager(value:IFocusManager):void
systemManager | propriedade |
systemManager:ISystemManager
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns the SystemManager object used by this component.
Implementação
public function get systemManager():ISystemManager
contains | () | método |
public function contains(child:DisplayObject):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Determines whether the specified display object is a child
of the container instance or the instance itself.
The search includes the entire display list including this container instance.
Grandchildren, great-grandchildren, and so on each return true
.
Parâmetros
child:DisplayObject — The child object to test.
|
Boolean — true if the child object is a child of the container
or the container itself; otherwise false .
|
Wed Jun 13 2018, 11:10 AM Z