Gets or sets a custom System.Collections.Specialized.StringCollection to use when the ComboBox.AutoCompleteSource property is set to CustomSource.
Documentation for this section has not yet been entered.
Use the ComboBox.AutoCompleteCustomSource, ComboBox.AutoCompleteMode, and ComboBox.AutoCompleteSource properties to create a System.Windows.Forms.ComboBox that automatically completes input strings by comparing the prefix being entered to the prefixes of all strings in a maintained source. This is useful for System.Windows.Forms.ComboBox controls in which URLs, addresses, file names, or commands will be frequently entered. If there are duplicate entries in the maintained source, automatic completion behaves unpredictably.
The use of the ComboBox.AutoCompleteCustomSource property is optional, but you must set the ComboBox.AutoCompleteSource property to CustomSource in order to use ComboBox.AutoCompleteCustomSource.
You must use the ComboBox.AutoCompleteMode and ComboBox.AutoCompleteSource properties together.
The operating system might limit the number of custom strings that it can display at once. For strings that contain a forward slash (/) or backward slash (\), automatic completion appends all characters only up to and including the slash.