Package | feathers.core |
Interface | public interface IFocusExtras |
Implementors | Panel |
Product Version : | Feathers 1.2.0 |
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
Property | Defined 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 |
focusExtrasAfter | property |
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.
public function get focusExtrasAfter():Vector.<DisplayObject>
focusExtrasBefore | property |
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.
public function get focusExtrasBefore():Vector.<DisplayObject>