I want to read OPC Item Path of a tag (using python script) to edit it and update it using system.tag.configure. Is there any way to read the OPC Item Path of an OPC tag?
You can use system.tag.getConfiguration
to return the tag properties including OPC item path.
1 Like
That's a great help!
You can also just directly read the OpcItemPath as a tag
system.tag.readBlocking("[default]Path/To/The/Tag.OpcItemPath")
2 Likes