Adobe® Flex® 4 Language Reference
Hide Packages and Classes List |  Packages  |  Classes  |  Index  |  Appendixes
mx.managers 
IFocusManagerGroup 
Packagemx.managers
Interfacepublic interface IFocusManagerGroup
Implementors RadioButton, RadioButton

Language Version: ActionScript 3.0
Product Version: Flex 3
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.



Public Properties
 PropertyDefined By
  groupName : String
The name of the group of controls to which the control belongs.
IFocusManagerGroup
  selected : Boolean
A flag that indicates whether this control is selected.
IFocusManagerGroup
Property Detail

groupName

property
groupName:String

Language Version: ActionScript 3.0
Product Version: Flex 3
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

property 
selected:Boolean

Language Version: ActionScript 3.0
Product Version: Flex 3
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