07-22-2016 04:08 PM
Hi,
I have an array and I want to point to a certain element in the array using its index. Basically I need to use the labview equivalent of "Array Index" in teststand. If im not wrong, GetNthSubProperty does the same thing? But I am looking for an example to use it. I keep getting errors when I try to use it. Here is my example:
MyArray : [0..5]
I am trying to point to index [4] of the array.
Solved! Go to Solution.
07-23-2016 05:43 PM
Locals.MyArray[4] should work.
07-25-2016 11:20 AM
Thank you so much!