06-22-2018 03:20 AM
Hello, I'm trying to get the value of 'ThreadOpt' which is the 'Execution Option value of a Sequence Call Step.
The value can be found in 'TS.SData' , but I can't get the value (which is 2 in this case), here's what I tried:
MainSEQ_ref.GetStep(0,1).Module.GetPropertyObject('ThreadOpt',0)
which returns a <COMObject <unknown>>
and
MainSEQ_ref.GetStep(0,1).Module.GetPropertyObject('ThreadOpt',0).Name
which returns 'ThreadOpt'
What am I missing? Thank you!
Solved! Go to Solution.
06-22-2018 06:08 AM
It was working properly, I had to use
print(MainSEQ_ref.GetStep(0,1).Module.GetPropertyObject('ThreadOpt',0))
or str()