Packageorg.apache.flex.core
Interfacepublic interface IValueToggleButtonModel extends IToggleButtonModel, IBeadModel, IBead, IEventDispatcher
Implementors ValueToggleButtonModel

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The IValueToggleButtonModel interface describes the minimum set of properties available each ToggleButton in a group of ToggleButtons of which only one can be selected at a time.



Public Properties
 PropertyDefined By
  groupName : String
The name of the group that this ToggleButton belongs to.
IValueToggleButtonModel
 Inheritedhtml : String
The html formatted text displayed in the control.
IToggleButtonModel
 Inheritedselected : Boolean
true if the button is selected.
IToggleButtonModel
  selectedValue : Object
A value associated with the instance of the ToggleButton that is currently selected.
IValueToggleButtonModel
 Inheritedtext : String
The text displayed in the control.
IToggleButtonModel
  value : Object
A value associated with this instance of the ToggleButton.
IValueToggleButtonModel
Property Detail
groupNameproperty
groupName:String

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The name of the group that this ToggleButton belongs to.


Implementation
    public function get groupName():String
    public function set groupName(value:String):void
selectedValueproperty 
selectedValue:Object

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

A value associated with the instance of the ToggleButton that is currently selected. It may not be this ToggleButton. This means that you can get the selected value from any instance of a ToggleButton in the group.


Implementation
    public function get selectedValue():Object
    public function set selectedValue(value:Object):void
valueproperty 
value:Object

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

A value associated with this instance of the ToggleButton.


Implementation
    public function get value():Object
    public function set value(value:Object):void