RadioButtonState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the visual state of an option button (also known as a radio button) that is drawn with visual styles.
public enum class RadioButtonState
public enum RadioButtonState
type RadioButtonState =
Public Enum RadioButtonState
- Inheritance
Fields
Name | Value | Description |
---|---|---|
UncheckedNormal | 1 | The option button is unchecked and normal. |
UncheckedHot | 2 | The option button is unchecked and hot. |
UncheckedPressed | 3 | The option button is unchecked and pressed. |
UncheckedDisabled | 4 | The option button is unchecked and disabled. |
CheckedNormal | 5 | The option button is checked and normal. |
CheckedHot | 6 | The option button is checked and hot. |
CheckedPressed | 7 | The option button is checked and pressed. |
CheckedDisabled | 8 | The option button is checked and disabled. |
Remarks
The RadioButtonState values correspond to the states of the VisualStyleElement objects exposed by the VisualStyleElement.Button.RadioButton class. The RadioButtonState values are also used as an argument in the RadioButtonRenderer.DrawRadioButton method.