08-31-2011 10:26 AM
I have retrieved an array through property nodes using the value property, but haven't found a way to do the same with a cluster. Am I missing something?
Thanks,
Glauber
Solved! Go to Solution.
08-31-2011 11:11 AM - edited 08-31-2011 11:13 AM
You can create a value property node for a cluster. But what you are probably seeing is that the value is returning a variant. If that is the case you have to convert the variant to a cluster using the Variant To Data prim. Define the data type with a constant created from your cluster.
Edit: The cluster should be a typedef before you create a constant from it. Otherwise you will have a mess when you modify the cluster.
08-31-2011 11:13 AM
Look at the following:
08-31-2011 11:16 AM
Ah yes. If you want to get an individual element then read the document Adnan Z linked. From the title this seems like what you want to do but from the body it looked like you wanted the whole cluster.
08-31-2011 12:02 PM
Thanks!