File: System\Windows\Forms\AutoCompleteMode.cs
Web Access
Project: src\src\System.Windows.Forms\src\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Windows.Forms;
 
/// <summary>
///  Specifies the autocomplete mode for ComboBox and TextBox AutoComplete Feature.
/// </summary>
public enum AutoCompleteMode
{
    /// <summary>
    ///  Disables the AutoComplete Feature for ComboBox and TextBox.
    /// </summary>
    None = AUTOCOMPLETEOPTIONS.ACO_NONE,
 
    /// <summary>
    ///  Displays the auxiliary drop-down list associated with the edit control,
    ///  this drop-down is populated with one or more suggested completed strings.
    /// </summary>
    Suggest = AUTOCOMPLETEOPTIONS.ACO_AUTOSUGGEST,
 
    /// <summary>
    ///  Appends the remainder of the most likely candidate string to the existing
    ///  characters, highlighting the appended characters.
    /// </summary>
    Append = AUTOCOMPLETEOPTIONS.ACO_AUTOAPPEND,
 
    /// <summary>
    ///  The AutoSuggest and AutoAppend are applied in conjuction.
    /// </summary>
    SuggestAppend = Suggest | Append
}