A Checkbox has two values:
on for selected and
off for cleared. The state of a checkbox is stored in a Boolean variable in the
Declarations node.
The text label for a checkbox gets its name, by default, from the Description field of the Boolean variable with which it is associated.
The Initial value of the variable
deformation is overwritten by the
Value for selected (
on) or the
Value for cleared (
off) and does not need to be edited. When used in methods, the values
on and
off are aliases for
true and
false, respectively. These values can be used as Booleans in
if statements, for example.
The code statements below come from a local method that is run for an On data change event when the value of the Boolean variable
deformation changes.
The figure below shows the Settings window for a checkbox associated with a Boolean variable is
FindLength used to store the state of the checkbox.

The code statements below come from a method that is run for an On data change event when the value of the Boolean variable is
FindLength changes.