CheckBoxState Enum

Definition

Specifies the visual state of a check box that is drawn with visual styles.

public enum class CheckBoxState
public enum CheckBoxState
type CheckBoxState = 
Public Enum CheckBoxState
Inheritance
CheckBoxState

Fields

CheckedDisabled 8

The check box is checked and disabled.

CheckedHot 6

The check box is checked and hot.

CheckedNormal 5

The check box is checked.

CheckedPressed 7

The check box is checked and pressed.

MixedDisabled 12

The check box is three-state and disabled.

MixedHot 10

The check box is three-state and hot.

MixedNormal 9

The check box is three-state.

MixedPressed 11

The check box is three-state and pressed.

UncheckedDisabled 4

The check box is unchecked and disabled.

UncheckedHot 2

The check box is unchecked and hot.

UncheckedNormal 1

The check box is unchecked.

UncheckedPressed 3

The check box is unchecked and pressed.

Remarks

The CheckBoxState values correspond to the states of the VisualStyleElement objects exposed by the VisualStyleElement.Button.CheckBox class. The CheckBoxState values are also used as an argument in the CheckBoxRenderer.DrawCheckBox method.

Applies to