Pakket | mx.managers |
Interface | public interface IFocusManagerContainer extends IEventDispatcher |
Geïmplementeerd door | Container, Menu, SearchUserDialog, SkinnableContainerBase |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
defaultButton : IFlexDisplayObject
The Button control designated as the default button
for the container. | IFocusManagerContainer | ||
focusManager : IFocusManager
The FocusManager for this component. | IFocusManagerContainer | ||
systemManager : ISystemManager [alleen-lezen]
Returns the SystemManager object used by this component. | IFocusManagerContainer |
Methode | Gedefinieerd door | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | IEventDispatcher | ||
Determines whether the specified display object is a child
of the container instance or the instance itself. | IFocusManagerContainer | ||
Verzendt een gebeurtenis naar de gebeurtenisstroom. | IEventDispatcher | ||
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | IEventDispatcher | ||
Verwijdert een listener uit het object EventDispatcher. | IEventDispatcher | ||
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | IEventDispatcher |
defaultButton | eigenschap |
defaultButton:IFlexDisplayObject
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
De standaardwaarde is null.
Implementatie
public function get defaultButton():IFlexDisplayObject
public function set defaultButton(value:IFlexDisplayObject):void
focusManager | eigenschap |
focusManager:IFocusManager
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The FocusManager for this component.
The FocusManager must be in a focusManager
property.
Implementatie
public function get focusManager():IFocusManager
public function set focusManager(value:IFocusManager):void
systemManager | eigenschap |
systemManager:ISystemManager
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the SystemManager object used by this component.
Implementatie
public function get systemManager():ISystemManager
contains | () | methode |
public function contains(child:DisplayObject):Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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
.
Parameters
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:42 AM Z