Adds a key-value pair to the Auto Expand dictionary.
This example adds a definition to the Auto Expand tool.
Sub AddEntryToAutoExpand()
Dim auto As AutoExpand
'Get the autoExpand object
Set auto = ThisIbmTerminal.Productivity.AutoExpand
If auto.ContainsEntry("hcdt") = False Then
'Add an Auto Expand definition entry
auto.AddEntry "hcdt", "Hydrochlorothiazide"
End If
End Sub