Skip to content

CheckboxValue

Namespace: Hex1b.Widgets

Assembly: Hex1b.dll

The three discrete values a checkbox can hold. This is the value layer of the model.

csharp
public enum CheckboxValue

Fields

Checked

The checkbox is checked.

Returns: CheckboxValue

csharp
Checked = 1

Indeterminate

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

Returns: CheckboxValue

csharp
Indeterminate = 2

Unchecked

The checkbox is unchecked.

Returns: CheckboxValue

csharp
Unchecked = 0

Released under the MIT License.