How to make a property read only in python result plot
Kev
Member Posts: 41
**
Hi everyone
Here's an easy one. Would like to know the function that sets the a python result property to read only or locked so that it cannot be changed by the user.
Thanks
Tagged:
0
Best Answer
-
Specifically, do something like this in your property provider code.
def ReturnTrue(Arg=None): return True def ReturnFalse(Arg=None): return False def SetReadOnly(Prop): Prop.IsReadOnlyCallback=ReturnTrue
Check out this link for this and more info...
2