CheckBox

The CheckBox control allows the user to toggle an option on or off, usually reflecting a Boolean (Yes/No or True/False) value. When they are presented as a list of options, any combination of check boxes may be selected or de-selected.

Properties

Key properties of CheckBox include:

  • Content. The prompt displayed alongside the CheckBox.
  • IsChecked. The default state, and subsequent states, of a checkbox can be set to True(checked) or False (unchecked).

Events

Key events associated with a Check Box include:

  • Checked and Unchecked. A Python script can be configured for execution when the CheckBox is checked (selected) or unchecked with the mouse.
  • Indeterminate. When multiple check boxes are selected, the state of any one CheckBox may be indeterminate.

See: Trigger an action from a button click event

Data Binding

When you drag and drop a Boolean/Bit field onto a form from a dataset, a CheckBox with the relevant binding is created.