Pacchetto | mx.managers |
Interfaccia | public interface IFocusManagerContainer extends IEventDispatcher |
Implementatori | Container, Menu, SearchUserDialog, SkinnableContainerBase |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Proprietà | Definito da | ||
---|---|---|---|
defaultButton : IFlexDisplayObject
The Button control designated as the default button
for the container. | IFocusManagerContainer | ||
focusManager : IFocusManager
The FocusManager for this component. | IFocusManagerContainer | ||
systemManager : ISystemManager [sola lettura]
Returns the SystemManager object used by this component. | IFocusManagerContainer |
Metodo | Definito da | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | IEventDispatcher | ||
Determines whether the specified display object is a child
of the container instance or the instance itself. | IFocusManagerContainer | ||
Invia un evento nel flusso di eventi. | IEventDispatcher | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | IEventDispatcher | ||
Rimuove un listener dall'oggetto EventDispatcher. | IEventDispatcher | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | IEventDispatcher |
defaultButton | proprietà |
defaultButton:IFlexDisplayObject
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni 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.
Il valore predefinito è null.
Implementazione
public function get defaultButton():IFlexDisplayObject
public function set defaultButton(value:IFlexDisplayObject):void
focusManager | proprietà |
focusManager:IFocusManager
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The FocusManager for this component.
The FocusManager must be in a focusManager
property.
Implementazione
public function get focusManager():IFocusManager
public function set focusManager(value:IFocusManager):void
systemManager | proprietà |
systemManager:ISystemManager
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the SystemManager object used by this component.
Implementazione
public function get systemManager():ISystemManager
contains | () | metodo |
public function contains(child:DisplayObject):Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni 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
.
Parametri
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 .
|
Tue Jun 12 2018, 02:44 PM Z