02-14-2018 09:44 PM
Hi All,
I like to assign array values to container in teststand
kindly help me to solve
thanks in advance
saran
02-15-2018 02:02 AM
Not sure I understand the question but here goes.
If you have a TestStand Container (Locals.MyContainer) which has two fields, Num1 and Num2 which are Numbers and you also have a TestStand Array of Numbers.
To pass the element0 of the array to Num1 of the container use
Locals.MyContainer.Num1 = Locals.MyArray[0]
Hope this answers your question.