ToolStripTextBox::AutoCompleteMode Property
Gets or sets an option that controls how automatic completion works for the ToolStripTextBox.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(true)] property AutoCompleteMode AutoCompleteMode { AutoCompleteMode get(); void set(AutoCompleteMode value); }
Property Value
Type: System.Windows.Forms::AutoCompleteModeOne of the AutoCompleteMode values. The default is None.
Use the AutoCompleteCustomSource, AutoCompleteMode, and AutoCompleteSource properties to create a ToolStripTextBox 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 ToolStripTextBox controls in which URLs, addresses, file names, or commands will be frequently entered.
The use of the AutoCompleteCustomSource property is optional, but you must set the AutoCompleteSource property to CustomSource in order to use AutoCompleteCustomSource.
You must use the AutoCompleteMode and AutoCompleteSource properties together.
The following code example demonstrates the syntax for setting various ToolStripTextBox common property settings, including the AutoCompleteMode property .
Available since 2.0