Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The IFocusManagerContainer interface defines the interface that
containers implement to host a FocusManager.
The PopUpManager automatically installs a FocusManager
in any IFocusManagerContainer it pops up.
defaultButton:IFlexDisplayObject
Language Version: | ActionScript 3.0 |
Runtime Versions: | 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.
The default value is null.
Implementation public function get defaultButton():IFlexDisplayObject
public function set defaultButton(value:IFlexDisplayObject):void
focusManager:IFocusManager
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The FocusManager for this component.
The FocusManager must be in a focusManager
property.
Implementation public function get focusManager():IFocusManager
public function set focusManager(value:IFocusManager):void
systemManager:ISystemManager
[read-only]
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the SystemManager object used by this component.
Implementation public function get systemManager():ISystemManager
public function contains(child:DisplayObject):Boolean
Language Version: | ActionScript 3.0 |
Runtime Versions: | 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
Returns | Boolean — true if the child object is a child of the container
or the container itself; otherwise false .
|