Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The IFocusManagerGroup interface defines the interface that
any component must implement if it is grouped in sets,
where only one member of the set can be selected at any given time.
For example, a RadioButton implements IFocusManagerGroup
because a set of RadioButtons in the same group
can only have one RadioButton selected at any one time,
and the FocusManager will make sure not to give focus to the RadioButtons
that are not selected in response to moving focus via the Tab key.
groupName:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The name of the group of controls to which the control belongs.
Implementation public function get groupName():String
public function set groupName(value:String):void
selected:Boolean
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
A flag that indicates whether this control is selected.
Implementation public function get selected():Boolean
public function set selected(value:Boolean):void