06-08-2011 04:39 PM
Specifically, the Step.InitializationExpr, Step.ConditionExpr and Step.IncrementExpr in the NI_Flow_For (Step). I can't find any way to get to these properties. I intend on applying this method to other built in and NI Step types.
Solved! Go to Solution.
06-08-2011 05:12 PM - edited 06-08-2011 05:12 PM
Step.AsPropertyObject.SetValString("InitializationExpr",0,"MyValue")
06-08-2011 05:15 PM
Oops you said "get":
MyVar = Step.AsPropertyObject.GetValString("InitializationExpr",0)
06-09-2011 08:29 AM
Thanks for the solution.