File: Windows.Win32.AUTOCOMPLETEOPTIONS.g.cs
Project: src\src\System.Windows.Forms.Primitives\src\System.Windows.Forms.Primitives.csproj (System.Windows.Forms.Primitives)
// ------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------

#pragma warning disable CS1591,CS1573,CS0465,CS0649,CS8019,CS1570,CS1584,CS1658,CS0436,CS8981
using global::System;
using global::System.Diagnostics;
using global::System.Diagnostics.CodeAnalysis;
using global::System.Runtime.CompilerServices;
using global::System.Runtime.InteropServices;
using global::System.Runtime.Versioning;
using winmdroot = global::Windows.Win32;
namespace Windows.Win32
{
	namespace UI.Shell
	{
		/// <summary>Specifies values used by IAutoComplete2::GetOptions and IAutoComplete2::SetOptions for options surrounding autocomplete.</summary>
		/// <remarks>
		/// <para><see href="https://learn.microsoft.com/windows/win32/api/shldisp/ne-shldisp-autocompleteoptions">Learn more about this API from docs.microsoft.com</see>.</para>
		/// </remarks>
		[global::System.CodeDom.Compiler.GeneratedCode("Microsoft.Windows.CsWin32", "0.3.151+58e949951d.RR")]
		internal enum AUTOCOMPLETEOPTIONS
		{
			/// <summary>0x0000. Do not autocomplete.</summary>
			ACO_NONE = 0,
			/// <summary>0x0001. Enable the autosuggest drop-down list.</summary>
			ACO_AUTOSUGGEST = 1,
			/// <summary>0x0002. Enable autoappend.</summary>
			ACO_AUTOAPPEND = 2,
			/// <summary>0x0004. Add a search item to the list of completed strings. When the user selects this item, it launches a search engine.</summary>
			ACO_SEARCH = 4,
			/// <summary>0x0008. Do not match common prefixes, such as "www." or "http://".</summary>
			ACO_FILTERPREFIXES = 8,
			/// <summary>0x0010. Use the TAB key to select an item from the drop-down list.</summary>
			ACO_USETAB = 16,
			/// <summary>0x0020. Use the UP ARROW and DOWN ARROW keys to display the autosuggest drop-down list.</summary>
			ACO_UPDOWNKEYDROPSLIST = 32,
			/// <summary>0x0040. Normal windows display text left-to-right (LTR). Windows can be mirrored to display languages such as Hebrew or Arabic that read right-to-left (RTL). Typically, control text is displayed in the same direction as the text in its parent window. If <a href="https://docs.microsoft.com/windows/desktop/api/shldisp/ne-shldisp-autocompleteoptions">ACO_RTLREADING</a> is set, the text reads in the opposite direction from the text in the parent window.</summary>
			ACO_RTLREADING = 64,
			/// <summary>0x0080. <b>Windows Vista and later</b>. If set, the autocompleted suggestion is treated as a phrase for search purposes. The suggestion, <i>Microsoft Office</i>, would be treated as <i>"Microsoft Office"</i> (where both <i>Microsoft</i> AND <i>Office</i> must appear in the search results).</summary>
			ACO_WORD_FILTER = 128,
			/// <summary>0x0100. <b>Windows Vista and later</b>. Disable prefix filtering when displaying the autosuggest dropdown. Always display all suggestions.</summary>
			ACO_NOPREFIXFILTERING = 256,
		}
	}
}