AdvancedTextBoxAutoCompleteMode Property

Gets or sets an option that controls how automatic completion works for the TextBox.

Definition

Namespace: KGySoft.WinForms.Controls
Assembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
C#
[DefaultValueAttribute(AutoCompleteMode.None)]
public AutoCompleteMode AutoCompleteMode { get; set; }

Return Value

AutoCompleteMode
One of the values of AutoCompleteMode. The following are the values. Append Appends the remainder of the most likely candidate string to the existing characters, highlighting the appended characters. Suggest Displays the auxiliary drop-down list associated with the edit control. This drop-down is populated with one or more suggested completion strings. SuggestAppend Appends both Suggest and Append options. None Disables automatic completion. This is the default.

Exceptions

InvalidEnumArgumentExceptionThe specified value is not one of the values of AutoCompleteMode.

See Also