AdvancedTextBoxAutoCompleteMode Property
Gets or sets an option that controls how automatic completion works for the
TextBox.
Namespace: KGySoft.WinForms.ControlsAssembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
[DefaultValueAttribute(AutoCompleteMode.None)]
public AutoCompleteMode AutoCompleteMode { get; set; }
<DefaultValueAttribute(AutoCompleteMode.None)>
Public Property AutoCompleteMode As AutoCompleteMode
Get
Set
public:
[DefaultValueAttribute(AutoCompleteMode::None)]
property AutoCompleteMode AutoCompleteMode {
AutoCompleteMode get ();
void set (AutoCompleteMode value);
}
[<DefaultValueAttribute(AutoCompleteMode.None)>]
member AutoCompleteMode : AutoCompleteMode with get, set
Return Value
AutoCompleteModeOne 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.