browseTags

When I use system.tag.browseTags(), I can find out if it is a UDT with .isUDT.
.type gives me ‘UDT_INST’.
.dataType gives me ‘Int4’

Is there a way to get the name Parent UDT returned?

Cheers,
Chris

You could perform a system.tag.read() once you found a UDT to get the Parent Type

system.tag.read("MyTag.udtParentType").value

Thanks Pat!

That works perfectly!!