Check Box¶
The CheckBox widget in Emakin provides a simple yes/no input model, commonly used for binary selections such as enabling or disabling options.
Value¶
- Default Values:- Checked: True
- Unchecked: (empty)
 
- Checked: 
These default values can be customized by setting the following properties:
- CheckedValue: Defines the value when the checkbox is selected.
- UncheckedValue: Defines the value when the checkbox is not selected.
Remarks¶
-  Case-Insensitive Comparison: 
 Value comparisons are case-insensitive. For example, the following values are treated as equivalent for the default checked state:- True
- true
- TRUE
- TrUe
 
This flexibility ensures consistent data evaluation, regardless of capitalization or input format.