Gets the AutoComplete instance associated with a specified Control.
The AutoComplete instance associated with a specified control.
Use this property as a convenient way to access the AutoComplete instance associated with a control.
If no AutoComplete instance has been assigned to a control yet, a new AutoComplete is created and returned.
This example enables file system autocompletion for a control called textBox1.
[C#]
autoCompleteManager1[textBox1].IncludeRecent = AutoCompleteRecent.Files;
[Visual Basic]
autoCompleteManager1(textBox1).IncludeRecent = AutoCompleteRecent.Files
AutoCompleteManager Class | Skybound.AutoComplete Namespace