Packagefeathers.controls
Classpublic class ToggleState
InheritanceToggleState Inheritance Object

Product Version : Feathers 3.1.0

States for simple toggle components.

See also

feathers.core.IToggle
feathers.controls.ToggleSwitch


Public Constants
 ConstantDefined By
  DISABLED : String = "disabled"
[static] The state where the component is not selected and disabled.
ToggleState
  NOT_SELECTED : String = "notSelected"
[static] The state where the component is not selected.
ToggleState
  SELECTED : String = "selected"
[static] The state where the component is selected.
ToggleState
  SELECTED_AND_DISABLED : String = "selectedAndDisabled"
[static] The state where the component is selected and disabled.
ToggleState
Constant Detail
DISABLEDConstant
public static const DISABLED:String = "disabled"

Product Version : Feathers 3.1.0

The state where the component is not selected and disabled. If the component implements the IToggle interface, the isSelected property will be false. The isEnabled property will be false.

See also

NOT_SELECTEDConstant 
public static const NOT_SELECTED:String = "notSelected"

Product Version : Feathers 3.1.0

The state where the component is not selected. If the component implements the IToggle interface, the isSelected property will be false.

See also

SELECTEDConstant 
public static const SELECTED:String = "selected"

Product Version : Feathers 3.1.0

The state where the component is selected. If the component implements the IToggle interface, the isSelected property will be true.

See also

SELECTED_AND_DISABLEDConstant 
public static const SELECTED_AND_DISABLED:String = "selectedAndDisabled"

Product Version : Feathers 3.1.0

The state where the component is selected and disabled. If the component implements the IToggle interface, the isSelected property will be true. The isEnabled property will be false.

See also