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 CheckboxValueFields
Checked
The checkbox is checked.
Returns: CheckboxValue
csharp
Checked = 1Indeterminate
The checkbox is in an indeterminate state (partially checked). Used when a parent represents a group with mixed selection.
Returns: CheckboxValue
csharp
Indeterminate = 2Unchecked
The checkbox is unchecked.
Returns: CheckboxValue
csharp
Unchecked = 0