ruevit
February 26, 2024, 7:48am
1
I have an UDT (UDT1
) with parameter Param
. Inside this UDT1
I have instance of another UDT (UDT2
) where I want to use the value of Param
. Lets say I want the value of Tooltip
to be equal to the value of Param
.
Something like {ParentInstanceName.Param}
...?
ruevit
February 26, 2024, 8:06am
2
I found the problem. I have Param
in UDT2
too. It overrides UDT1.Param
. I have to find solution for that... The problem is not solved yet.
pturmel
February 26, 2024, 12:32pm
3
Use a different parameter name. "Param" is way to generic to avoid clashes.
1 Like
ruevit
February 26, 2024, 2:15pm
4
Thank you very much. I will try different aproach - to convert UDT2
to subfolder. It is duplicate of UDT2
, but I hope it will never go complicated.
ruevit
February 27, 2024, 5:38am
5
Ok. I found a solution. I have to put {Param}
as value of UDT2.Param
. If someone else needs such behaviour.