Packagefeathers.core
Interfacepublic interface IFocusExtras
Implementors Panel

Product Version : Feathers 1.2.0

A container that may have extra children that aren't accessible from the standard display list functions like getChildAt(), but those "extra" children may still need to receive focus. An example of this would be a container with "chrome", such as feathers.controls.Panel.

See also

Keyboard focus management in Feathers


Public Properties
 PropertyDefined By
  focusExtrasAfter : Vector.<DisplayObject>
[read-only] Extra display objects that are not accessible through standard display list functions like getChildAt(), but should appear after those children in the focus order.
IFocusExtras
  focusExtrasBefore : Vector.<DisplayObject>
[read-only] Extra display objects that are not accessible through standard display list functions like getChildAt(), but should appear before those children in the focus order.
IFocusExtras
Property Detail
focusExtrasAfterproperty
focusExtrasAfter:Vector.<DisplayObject>  [read-only]

Extra display objects that are not accessible through standard display list functions like getChildAt(), but should appear after those children in the focus order. Typically, this is for containers that have chrome that is hidden from the normal display list API.

May return null if there are no extra children.


Implementation
    public function get focusExtrasAfter():Vector.<DisplayObject>
focusExtrasBeforeproperty 
focusExtrasBefore:Vector.<DisplayObject>  [read-only]

Extra display objects that are not accessible through standard display list functions like getChildAt(), but should appear before those children in the focus order. Typically, this is for containers that have chrome that is hidden from the normal display list API.

May return null if there are no extra children.


Implementation
    public function get focusExtrasBefore():Vector.<DisplayObject>