Checked Property

Applies To
RadioButton, Checkbox

Description
Gets or sets a value indicating whether the CheckBox or RadioButton control is checked.

Usage

GGet Form.Control.Checked, var  
GSet  Form.Control.Checked, value  
Form
Name of a form or string variable containing a form name.
Control
Name of a control or string variable containing a control name.
var
Boolean variable that will contain the value of the property.
value
Boolean expression for the new value of the property.

Values
False
True
Default: False

Remarks
Use this property to determine whether the CheckBox or RadioButton control is checked. This property can also be used to programmatically set the state of the CheckBox or RadioButton control.

See Also
RadioButton, CheckBox

Example

GSet frmMain.chkHiPower.Checked, False