I have a dynamic property bound to a table. The data type is one of my UDTs, so let’s call it MyUDT.
I am trying to access the following:
Table.MyUDT.SomeValue
But I need to use a string to access it, and getPropertyValue() and getComponent() do not work. I have tried:
Table.getPropertyValue('MyUDT.SomeValue')
(but None is returned)
Table.MyUDT.getPropertyValue('SomeValue')
(but the getPropertyValue method isnt’ available and I get the corresponding AttributeError)
Is there a way to do this?
Thanks!