Perspective - Is it possible to pull Tag Paths from Browser?

Hello All,

I would like to ask whether it's possible to view/pull an objects tag path while on the page in your web-browser (i.e by view-source or inspect element). I've noticed in some cases I can see a tag-path or two if i inspect element the entire page, but the majority I cannot.

Is this possible to do? Where are they being hidden?

Bindings are evaluated in the gateway, not in the browser. They aren't hidden, per se, just not present.

1 Like

Perspective properties have varying access levels (documentation), with "public" being the default. The locations you see tag paths are likely properties which store a tag path as a string.

You can access ONLY the tag paths which you're storing in properties in some way. The Tag provider(s) is not exposed in any way.

1 Like

Thank you!

Thank you! Makes sense