Controls > Advanced Controls > Checkbox > Checkbox State Properties
Checkbox State Properties
Check
Sets or gets a value that determines the checked state of the checkbox. The Check property of the Checkbox is commonly queried after the Click event.
JScript
var bMode = CheckBox.Check();
CheckBox.Check(bMode);
VBscript
bMode = CheckBox.Check
CheckBox.Check = bMode
Element
Description
bMode
true—indicates that the checkbox is selected.
false—indicates that the checkbox is cleared.
Was this helpful?