The 'CheckBoxGetCheck' function returns whether or not CheckBox is checked.
int @CheckBoxGetCheck(string class_name);
Parameters
string class_name : Class name of CheckBox.
Return Value
Check-status (0 = not checked, 1 = checked, )
Example
flag=@CheckBoxGetCheck("CheckBox1");
Description : The check-status of CheckBox named 'CheckBox1' is stored in the variable named 'flag'. (If CheckBox named 'CheckBox1' is checked, flag =1. If CheckBox named 'CheckBox1' is not checked, flag =0.)