Packagemx.managers
Interfacepublic interface IFocusManagerGroup

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
groupNameproperty
groupName:String  [read-write]

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
selectedproperty 
selected:Boolean  [read-write]

A flag that indicates whether this control is selected.

Implementation
    public function get selected():Boolean
    public function set selected(value:Boolean):void