Checked (Property)

Applies To:

ControlsCheckBox object, ControlsRadioButton object

Description:

Sets the selection of a check box or radio button controls.

Action:

Read-write, Boolean

Example:

This example shows how to change a Radio button or check box selection, assuming you are using: RadioButton1 and CheckBox1 in the Dashboard:

if (RadioButton1.Checked == true)
     CheckBox1.Checked = false
else
     CheckBox1.Checked = true