AutocompleteMenuNS.SubstringAutocompleteItem.SubstringAutocompleteItem C# (CSharp) Method

SubstringAutocompleteItem() public method

public SubstringAutocompleteItem ( string text, bool ignoreCase = true ) : System
text string
ignoreCase bool
return System
        public SubstringAutocompleteItem(string text, bool ignoreCase = true)
            : base(text)
        {
            this.ignoreCase = ignoreCase;
            if (ignoreCase)
                lowercaseText = text.ToLower();
        }
SubstringAutocompleteItem