T O P I C R E V I E W |
cdrozdowski111 |
Posted - 11/23/2012 : 4:42:15 PM OriginPro 9.0.0 (Student Version), Win7 64-bit, running in VMware Fusion 5.0.2
If you set an item on a graph to be "Not Selectable" via Programming Control, how to you reset it back to selectable so that it can be edited? |
1 L A T E S T R E P L I E S (Newest First) |
cpyang |
Posted - 11/24/2012 : 05:29:37 AM You need to know the name of that object. Do
list o;
to see all of them.
Once you know the name, you can do
objName.states=;
to see its current value and simply
objName.states=0;
will certainly reset all the bits.
CP
|
|
|