Customization > Automation Interface > Functions > For User Interface > Function for Panes > Functions for the dictionary pane > SelectDictItem function (automation interface)
  
SelectDictItem function (automation interface)
Syntax:
SelectDictItem("<id>")
Where:
<id> is a string that specifies the id of the item to select.
SelectDictItem uses the Dictionary Item Object's Id property to select an item in the Dictionary pane and returns a Boolean value to indicate success or failure:
Examples
In this example, the script opens Class1 in the Dictionary pane through its Id:
Set objItem = Dictionary.Item("Class", "Class1")
strItem = objItem.Property("Id")
Call Studio.SelectDictItem(strItem)