The 'CheckBoxSetCheck' function sets the check-status of CheckBox.
void @CheckBoxSetCheck(string class_name, char flag);
Parameters
string class_name : Class name of CheckBox.
char flag : Check-status that you want to set (1 = status that is checked, 0 = status that is not checked )
Return Value
None
Example
@CheckBoxSetCheck("CheckBox1", 1);
Description : The check-status of CheckBox named 'CheckBox1' is changed into status that is checked(1).