Skip to main content
Version: 7.9

Tag Browse Tree

Component Palette Icon:

Description

The Tag Browse Tree component is similar to the Tag Browser in the Designer, allowing tags to be browsed in both the Designer and the Client, and dragged on to other components like the Easy Chart. Unlike the Tag Browser, tags can not be edited, tag properties can not be displayed, and UDT definitions can not be displayed. Tags in the component can be refreshed through scripting by calling refresh().

Properties

NameDescriptionProperty TypeScriptingCategory
AntialiasDraw with antialias on? Makes text smoother.boolean.antialiasAppearance
BorderThe border surrounding this component. NOTE that the border is unaffected by rotation.Border.borderCommon
Data QualityThe data quality code for any tag bindings on this component.int.dataQualityData
Include Historical TagsWhether or not to display historical tags.boolean.showHistoricalRealtime Tag Tree Settings
Include Realtime TagsWhether or not to display non-historical tags.boolean.showRealtimeRealtime Tag Tree Settings
Mouseover TextThe text that is displayed in the tooltip which pops up on mouseover of this component.String.toolTipTextCommon
NameThe name of this component.String.nameCommon
Root Node PathThe path of the root of this tree structure, or "" if no selection. When intentionally setting the root node, the exact syntax changes depending on what the Tag Tree Mode property is set to:

Realtime Tag Tree: [TagProvider]FolderPath/

The example below is using the "default" tag provider, and a folder named "machine_1"

Example

[default]machine_1``/

Historical Tag Tree: [DatabaseConnection/GatewayName:TagProvider]FolderPath/

The example below is using a database connection named "DB", the system name of the Gateway is "ignition", the tag provider is "default" and will set the path to a folder named "machine_1"

Example

[DB``/``ignition:default]machine_1``/
String.rootNodePathData
Selected PathsContains the paths that should be selected on the tree which should be in the format of a single string column.Dataset.selectedPathsData
Selection ModeWhat kind of selection regions does the tree allow.int.selectionModeBehavior
Show Root HandlesWhether or not to show handles next to parent nodes.boolean.showRootNodeHandlesAppearance
Show Root NodeWhether or not to show the root node of the tree.boolean.showRootNodeAppearance
Tag Tree ModeChoose whether the tree is built using tags from the default provider or the historical provider..treeModeAppearance
VisibleIf disabled, the component will be hidden.boolean.visibleCommon

Scripting

See the Tag Browse Tree Scripting Functions page for the full list of scripting functions available for this component.

Event Handlers

Event handlers allow you to run a script based off specific triggers. See the full list of available event handlers on the Component Events page.

Customizers

Example

Code Snippet
# The following code shows a right-click popup menu.
# Add these lines after the """ """ section of the createPopupMenu extension function.
# Note how lines below are indented, the first def command should line up with the
# indentation of the """ """ section of the Extension Function.

def showValue(self):
value = str(clickedTag.value.value)
system.gui.messageBox(value)


def showLastChange(self):
lastChange = str(clickedTag.value.timestamp)
system.gui.messageBox(lastChange)

itemsDict = {"Show Value": showValue, "Show Last Change":showLastChange}
JPopupMenu = system.gui.createPopupMenu(itemsDict)
return JPopupMenu