Package | feathers.controls |
Class | public class ToggleState |
Inheritance | ToggleState Object |
Product Version : | Feathers 3.1.0 |
See also
Constant | Defined 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 |
DISABLED | Constant |
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_SELECTED | Constant |
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
SELECTED | Constant |
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_DISABLED | Constant |
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