RadioButtonState Enum

Definition

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
RadioButtonState

Fields

CheckedDisabled 8

The option button is checked and disabled.

CheckedHot 6

The option button is checked and hot.

CheckedNormal 5

The option button is checked and normal.

CheckedPressed 7

The option button is checked and pressed.

UncheckedDisabled 4

The option button is unchecked and disabled.

UncheckedHot 2

The option button is unchecked and hot.

UncheckedNormal 1

The option button is unchecked and normal.

UncheckedPressed 3

The option button is unchecked and pressed.

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.

Applies to