Hi,
In a Interactor PythonPart, I'm using ControlPropertiesUtil like in this link
It's working great for String but not for Checkbox
print(self.build_ele_list[0].MyCheckBox.value)return 0 or 1 (int)
I tried :
ctrl_prop_util.set_value_list('MyCheckBox', 1) ctrl_prop_util.set_value_list('MyCheckBox', True)
What's the correct syntaxt ?
Best