Reflection Desktop VBA Guide
Attachmate.Reflection.Objects Library / Attachmate.Reflection.Objects.Productivity Library / AutoComplete Object
In This Topic
AutoComplete Object
In This Topic
Implementation for the Auto Complete Productivity feature.
Remarks
You can configure Auto Complete settings, including presentation of suggestions and handling of field data. The Auto Complete feature recalls what you type and makes suggestions to help populate fields as it learns common, repeated commands.
Example
This example configures the Auto Complete tool.
Sub ConfigureAutoComplete()
    Dim auto As AutoComplete
    
    'Get the AutoComplete object
    Set auto = ThisIbmTerminal.Productivity.AutoComplete
    
    'Clear all suggestions that are currently defined
    auto.ClearSuggestions
      
    'Set the maximum word length
    auto.MaxWordLength = 54
    
    'Enable Auto Complete
    auto.Enabled = True
    
End Sub
See Also