Skip to content

CheckboxState

Namespace: Hex1b.Widgets

Assembly: Hex1b.dll

Represents the visual state of a checkbox.

csharp
public enum CheckboxState

Fields

Checked

The checkbox is checked.

Returns: CheckboxState

csharp
Checked = 1

Indeterminate

The checkbox is in an indeterminate state (partially checked). Used when a parent represents a group with mixed selection.

Returns: CheckboxState

csharp
Indeterminate = 2

Unchecked

The checkbox is unchecked.

Returns: CheckboxState

csharp
Unchecked = 0

Released under the MIT License.